Skip to content

Commit

Permalink
Fixed Naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
developerkunal committed Apr 27, 2024
1 parent 7f53f1c commit 9ab4b55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion management/organization.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type Organization struct {
// OrganizationConnections that will be enabled for this organization.
// See POST enabled_connections endpoint for the object format.
// (Max of 10 connections allowed)
OrganizationConnections []*OrganizationConnection `json:"enabled_connections,omitempty"`
EnabledConnections []*OrganizationConnection `json:"enabled_connections,omitempty"`
}

// OrganizationBranding holds branding information for an Organization.
Expand Down
2 changes: 1 addition & 1 deletion management/organization_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestOrganizationManager_Create(t *testing.T) {
Branding: &OrganizationBranding{
LogoURL: auth0.String("https://example.com/logo.gif"),
},
OrganizationConnections: []*OrganizationConnection{orgConn, orgConn2},
EnabledConnections: []*OrganizationConnection{orgConn, orgConn2},
}

err := api.Organization.Create(context.Background(), org)
Expand Down

0 comments on commit 9ab4b55

Please sign in to comment.