Skip to content

Commit

Permalink
Merge pull request #71 from MeasureAuthoringTool/MAT-6695
Browse files Browse the repository at this point in the history
MAT-6695: Add a feature flag
  • Loading branch information
mcmcphillips authored Feb 23, 2024
2 parents 59c2b4b + 3da1781 commit 79357d7
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 @@ -4,6 +4,7 @@ import { BehaviorSubject } from "rxjs";
// immutable object that retains state, tracks updates
const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
includeSDEValues: boolean;
qdmExport: boolean;
qdmTestCases: boolean;
qiCoreElementsTab: boolean;
Expand All @@ -19,6 +20,7 @@ export interface FeatureFlags {
generateCMSID: boolean;
}
const initialState: FeatureFlags = {
includeSDEValues: false,
qdmExport: false,
qdmTestCases: true,
qiCoreElementsTab: false,
Expand Down

0 comments on commit 79357d7

Please sign in to comment.