Skip to content

Commit

Permalink
Merge pull request #79 from MeasureAuthoringTool/MAT-6389
Browse files Browse the repository at this point in the history
MAT-6389: add featureFlag
  • Loading branch information
mcmcphillips authored Apr 4, 2024
2 parents 380d57a + 0690781 commit f282e11
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 @@ -14,6 +14,7 @@ export interface FeatureFlags {
manifestExpansion: boolean;
testCaseExport: boolean;
qdmCodeSearch: boolean;
QDMValueSetSearch: boolean;
}
const initialState: FeatureFlags = {
includeSDEValues: false,
Expand All @@ -26,6 +27,7 @@ const initialState: FeatureFlags = {
manifestExpansion: false,
testCaseExport: false,
qdmCodeSearch: false,
QDMValueSetSearch: false,
};

let state: FeatureFlags | null = initialState;
Expand Down

0 comments on commit f282e11

Please sign in to comment.