Skip to content

Commit

Permalink
MAT-7502: Add featureFlag for QI-Core6
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Aug 13, 2024
1 parent 734cdc4 commit 1932f9c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
CQLBuilderIncludes: boolean;
qiCoreElementsTab: boolean;
qiCore6: boolean;
qdmHideJson: boolean;
qiCoreBonnieTestCases: boolean;
enableQdmRepeatTransfer: boolean;
Expand All @@ -18,6 +19,7 @@ export interface FeatureFlags {
}
const initialState: FeatureFlags = {
CQLBuilderIncludes: false,
qiCore6: false,
qiCoreElementsTab: false,
qiCoreBonnieTestCases: false,
qdmHideJson: true,
Expand Down

0 comments on commit 1932f9c

Please sign in to comment.