Create feature flag for calendar V2 (#5998)

Create feature flag for calendar V2
This commit is contained in:
bosiraphael
2024-06-24 13:54:52 +02:00
committed by GitHub
parent 498e4ff6ba
commit 77f9f6473b
3 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,7 @@ export enum FeatureFlagKeys {
IsPostgreSQLIntegrationEnabled = 'IS_POSTGRESQL_INTEGRATION_ENABLED',
IsStripeIntegrationEnabled = 'IS_STRIPE_INTEGRATION_ENABLED',
IsContactCreationForSentAndReceivedEmailsEnabled = 'IS_CONTACT_CREATION_FOR_SENT_AND_RECEIVED_EMAILS_ENABLED',
IsGoogleCalendarSyncV2Enabled = 'IS_GOOGLE_CALENDAR_SYNC_V2_ENABLED',
}
@Entity({ name: 'featureFlag', schema: 'core' })