Skip to content

Commit

Permalink
other: updated subscriptionsecuritysettings 🔧
Browse files Browse the repository at this point in the history
  • Loading branch information
olemp committed Mar 21, 2024
1 parent baf5d53 commit 6310a40
Showing 1 changed file with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ import { Field, InputType, ObjectType } from 'type-graphql'
})
export class SubscriptionSecuritySettings {
/**
* Total number of vacation days per year
* Enable security group membership check
*/
@Field({ nullable: true })
securityGroupEnabled?: boolean

/**
* Security group ID (Microsoft Entra ID)
*/
@Field({
nullable: true,
Expand All @@ -27,7 +33,12 @@ export class SubscriptionSecuritySettings {
})
export class SubscriptionSecuritySettingsInput {
/**
* Total number of vacation days per year
* Enable security group membership check
*/
@Field({ nullable: true })
securityGroupEnabled?: boolean
/**
* Security group ID (Microsoft Entra ID)
*/
@Field({
nullable: true,
Expand Down

0 comments on commit 6310a40

Please sign in to comment.