mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
chore: milestone progression flag (#10719)
This commit is contained in:
parent
fb5d4cc7a1
commit
6c6d4c0ccc
@ -89,6 +89,7 @@ export type UiFlags = {
|
||||
newStrategyModal?: boolean;
|
||||
globalChangeRequestList?: boolean;
|
||||
flagsUiFilterRefactor?: boolean;
|
||||
milestoneProgression?: boolean;
|
||||
};
|
||||
|
||||
export interface IVersionInfo {
|
||||
|
||||
@ -60,7 +60,8 @@ export type IFlagKey =
|
||||
| 'newStrategyModal'
|
||||
| 'globalChangeRequestList'
|
||||
| 'newUiConfigService'
|
||||
| 'flagsUiFilterRefactor';
|
||||
| 'flagsUiFilterRefactor'
|
||||
| 'milestoneProgression';
|
||||
|
||||
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
||||
|
||||
@ -277,6 +278,10 @@ const flags: IFlags = {
|
||||
process.env.UNLEASH_EXPERIMENTAL_FLAGS_UI_FILTER_REFACTOR,
|
||||
false,
|
||||
),
|
||||
milestoneProgression: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_MILESTONE_PROGRESSION,
|
||||
false,
|
||||
),
|
||||
};
|
||||
|
||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||
|
||||
@ -57,6 +57,7 @@ process.nextTick(async () => {
|
||||
globalChangeRequestList: true,
|
||||
newUiConfigService: true,
|
||||
flagsUiFilterRefactor: true,
|
||||
milestoneProgression: true,
|
||||
},
|
||||
},
|
||||
authentication: {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user