Skip to content

Commit

Permalink
Merge pull request #104 from MeasureAuthoringTool/MAT-7694
Browse files Browse the repository at this point in the history
MAT-7694: add flag for CQLBuilderParameters
  • Loading branch information
mcmcphillips authored Oct 9, 2024
2 parents fea2cd5 + 9d967ed commit d4c5d7d
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 @@ -5,6 +5,7 @@ import { BehaviorSubject } from "rxjs";
const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
CQLBuilderIncludes: boolean;
CQLBuilderParameters: boolean;
qiCoreElementsTab: boolean;
qiCore6: boolean;
qdmHideJson: boolean;
Expand All @@ -21,6 +22,7 @@ export interface FeatureFlags {
}
const initialState: FeatureFlags = {
CQLBuilderIncludes: false,
CQLBuilderParameters: false,
qiCore6: false,
qiCoreElementsTab: false,
qiCoreBonnieTestCases: false,
Expand Down

0 comments on commit d4c5d7d

Please sign in to comment.