Skip to content

Commit

Permalink
Merge pull request #1959 from khiller-cf/master
Browse files Browse the repository at this point in the history
 AUTH-5816 fixes scim config authentication json marshalling
  • Loading branch information
jacobbednarz committed May 7, 2024
2 parents c3a5ec9 + ddb4a17 commit a8e30d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .changelog/1959.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
access_application: fix scim configuration authentication json marshalling
```
4 changes: 4 additions & 0 deletions access_application.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ func (a *AccessApplicationScimAuthenticationJson) UnmarshalJSON(buf []byte) erro
return json.Unmarshal(buf, a.Value)
}

func (a *AccessApplicationScimAuthenticationJson) MarshalJSON() ([]byte, error) {
return json.Marshal(a.Value)
}

type AccessApplicationScimAuthentication interface {
isScimAuthentication()
}
Expand Down

0 comments on commit a8e30d4

Please sign in to comment.