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

@ -45,6 +45,11 @@ export const seedFeatureFlags = async (
workspaceId: workspaceId,
value: true,
},
{
key: FeatureFlagKeys.IsGoogleCalendarSyncV2Enabled,
workspaceId: workspaceId,
value: true,
},
])
.execute();
};