Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
duedares-rvj committed Nov 11, 2024
1 parent 9c5c6dc commit 2e422f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions management/self_service_profiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ type SelfServiceProfileTicketConnectionConfig struct {
// created as a part of the SSO flow.
DisplayName *string `json:"display_name,omitempty"`

IsDomainConnection *bool `json:"is_domain_connection,omitempty"`
ShowAsButton *bool `json:"show_as_button,omitempty"`
Metadata *map[string]interface{} `json:"metadata,omitempty"`
Options SelfServiceProfileTicketConnectionConfigOptions `json:"options,omitempty"`
IsDomainConnection *bool `json:"is_domain_connection,omitempty"`
ShowAsButton *bool `json:"show_as_button,omitempty"`
Metadata *map[string]interface{} `json:"metadata,omitempty"`
Options *SelfServiceProfileTicketConnectionConfigOptions `json:"options,omitempty"`
}

// SelfServiceProfileTicketConnectionConfigOptions is the list of Options for SSO Ticket.
Expand Down
2 changes: 1 addition & 1 deletion management/self_service_profiles_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func TestSelfServiceProfileManager_CreateAndRevokeTicket(t *testing.T) {
"key1": "value1",
"key2": "value2",
},
Options: SelfServiceProfileTicketConnectionConfigOptions{
Options: &SelfServiceProfileTicketConnectionConfigOptions{
IconURL: auth0.String("https://metabox.com/my_icon.jpeg"),
DomainAliases: []*string{auth0.String("okta.com")},
},
Expand Down

0 comments on commit 2e422f2

Please sign in to comment.