feat: add feature flag to activate Links field creation (#5535)

Related issue: #3607
This commit is contained in:
Thaïs
2024-05-22 18:06:32 +02:00
committed by GitHub
parent 4e533bf2ef
commit 04bf697b25
6 changed files with 32 additions and 11 deletions

View File

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