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();
};

View File

@ -20,6 +20,7 @@ export enum FeatureFlagKeys {
IsAirtableIntegrationEnabled = 'IS_AIRTABLE_INTEGRATION_ENABLED',
IsPostgreSQLIntegrationEnabled = 'IS_POSTGRESQL_INTEGRATION_ENABLED',
IsFullSyncV2Enabled = 'IS_FULL_SYNC_V2_ENABLED',
IsMultiSelectEnabled = 'IS_MULTI_SELECT_ENABLED',
}
@Entity({ name: 'featureFlag', schema: 'core' })

View File

@ -59,6 +59,7 @@ export class AddStandardIdCommand extends CommandRunner {
IS_AIRTABLE_INTEGRATION_ENABLED: true,
IS_POSTGRESQL_INTEGRATION_ENABLED: true,
IS_FULL_SYNC_V2_ENABLED: false,
IS_MULTI_SELECT_ENABLED: false,
},
);
const standardFieldMetadataCollection = this.standardFieldFactory.create(
@ -74,6 +75,7 @@ export class AddStandardIdCommand extends CommandRunner {
IS_AIRTABLE_INTEGRATION_ENABLED: true,
IS_POSTGRESQL_INTEGRATION_ENABLED: true,
IS_FULL_SYNC_V2_ENABLED: false,
IS_MULTI_SELECT_ENABLED: false,
},
);