Skip to content

Commit

Permalink
added first_name and last_name for SSO user
Browse files Browse the repository at this point in the history
Signed-off-by: Shendge <[email protected]>
  • Loading branch information
shenda1 committed Jun 3, 2024
1 parent 6eaea85 commit 9e975a9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions types/v1/ssoUserTypes.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ type SSOUserCreateParam struct {
Password string `json:"password"`
Type string `json:"type"`
IsEnabled bool `json:"is_enabled,omitempty"`
FirstName string `json:"first_name,omitempty"`
LastName string `json:"last_name,omitempty"`
}

// SSOUserModifyParam represents the parameters for modifying an SSO user.
Expand All @@ -58,4 +60,6 @@ type SSOUserModifyParam struct {
Role string `json:"role,omitempty"`
Password string `json:"password,omitempty"`
IsEnabled bool `json:"is_enabled,omitempty"`
FirstName string `json:"first_name,omitempty"`
LastName string `json:"last_name,omitempty"`
}

0 comments on commit 9e975a9

Please sign in to comment.