Skip to content

Commit 3307bd9

Browse files
authored
chore: add feature flag for multiple connections COMPASS-7634
chore: add feature flag
1 parent 71002c0 commit 3307bd9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

packages/compass-preferences-model/src/feature-flags.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export type FeatureFlags = {
2121
enableBulkUpdateOperations: boolean;
2222
enableBulkDeleteOperations: boolean;
2323
enableRenameCollectionModal: boolean;
24+
enableNewMultipleConnectionSystem: boolean;
2425
};
2526

2627
export const featureFlags: Required<{
@@ -97,4 +98,16 @@ export const featureFlags: Required<{
9798
long: 'Allows users to rename a collection from the sidebar',
9899
},
99100
},
101+
102+
/**
103+
* Feature flag for the new multiple connection UI.
104+
* Epic: COMPASS-6410
105+
*/
106+
enableNewMultipleConnectionSystem: {
107+
stage: 'development',
108+
description: {
109+
short: 'Enables support for multiple connections.',
110+
long: 'Allows users to open multiple connections in the same window.',
111+
},
112+
},
100113
};

0 commit comments

Comments
 (0)