Skip to content

Commit

Permalink
fixes scim config authentication json marshalling
Browse files Browse the repository at this point in the history
  • Loading branch information
khiller-cf committed May 7, 2024
1 parent c3a5ec9 commit dddd69d
Showing 1 changed file with 4 additions and 0 deletions.
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 dddd69d

Please sign in to comment.