Skip to content

Commit

Permalink
BED-4750 added LoginURL to properties and re-generated files (#819)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvlipka authored Aug 28, 2024
1 parent 4dba057 commit b37a96c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions packages/cue/bh/azure/azure.cue
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ Properties: [
MFAEnabled,
License,
Licenses,
LoginURL,
MFAEnforced,
UserPrincipalName,
IsAssignableToRole,
Expand Down
16 changes: 8 additions & 8 deletions packages/go/graphschema/azure/azure.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/javascript/bh-shared-ui/src/graphSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,6 @@ export enum AzureKindProperties {
AppOwnerOrganizationID = 'appownerorganizationid',
AppDescription = 'appdescription',
AppDisplayName = 'appdisplayname',
LoginURL = 'loginurl',
ServicePrincipalType = 'serviceprincipaltype',
UserType = 'usertype',
TenantID = 'tenantid',
Expand All @@ -909,6 +908,7 @@ export enum AzureKindProperties {
MFAEnabled = 'mfaenabled',
License = 'license',
Licenses = 'licenses',
LoginURL = 'loginurl',
MFAEnforced = 'mfaenforced',
UserPrincipalName = 'userprincipalname',
IsAssignableToRole = 'isassignabletorole',
Expand All @@ -924,8 +924,6 @@ export function AzureKindPropertiesToDisplay(value: AzureKindProperties): string
return 'App Description';
case AzureKindProperties.AppDisplayName:
return 'App Display Name';
case AzureKindProperties.LoginURL:
return 'Login URL';
case AzureKindProperties.ServicePrincipalType:
return 'Service Principal Type';
case AzureKindProperties.UserType:
Expand Down Expand Up @@ -970,6 +968,8 @@ export function AzureKindPropertiesToDisplay(value: AzureKindProperties): string
return 'License';
case AzureKindProperties.Licenses:
return 'Licenses';
case AzureKindProperties.LoginURL:
return 'Login URL';
case AzureKindProperties.MFAEnforced:
return 'MFA Enforced';
case AzureKindProperties.UserPrincipalName:
Expand Down

0 comments on commit b37a96c

Please sign in to comment.