Add IS_MULTI_SELECT_ENABLED feature flag (#4779)

closes #4776
This commit is contained in:
martmull
2024-04-03 17:15:38 +02:00
committed by GitHub
parent 5c3e5a0d8a
commit 358269c60e
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.IsMultiSelectEnabled,
workspaceId: workspaceId,
value: true,
},
])
.execute();
};