Skip to content

Commit

Permalink
Merge pull request #113 from MeasureAuthoringTool/MAT-7939_removeFlags
Browse files Browse the repository at this point in the history
MAT-7939 remove unused feature flags
  • Loading branch information
sb-cecilialiu authored Dec 16, 2024
2 parents 96a662a + 7ee304d commit 34f4dc4
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,22 @@ import { BehaviorSubject } from "rxjs";
// immutable object that retains state, tracks updates
const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
CQLBuilderIncludes: boolean;
CQLBuilderParameters: boolean;
qiCoreElementsTab: boolean;
qiCore6: boolean;
qdmHideJson: boolean;
qiCoreBonnieTestCases: boolean;
enableQdmRepeatTransfer: boolean;
CQLBuilderDefinitions: boolean;
MeasureListButtons: boolean;
TestCaseID: boolean;
MeasureButtons: boolean;
stu6TestCaseValidation: boolean;
}
const initialState: FeatureFlags = {
CQLBuilderIncludes: false,
CQLBuilderParameters: false,
qiCore6: false,
qiCoreElementsTab: false,
qiCoreBonnieTestCases: false,
qdmHideJson: true,
enableQdmRepeatTransfer: false,
CQLBuilderDefinitions: false,
MeasureListButtons: false,
TestCaseID: false,
MeasureButtons: false,
stu6TestCaseValidation: false,
};
Expand Down

0 comments on commit 34f4dc4

Please sign in to comment.