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;
|
newStrategyModal?: boolean;
|
||||||
globalChangeRequestList?: boolean;
|
globalChangeRequestList?: boolean;
|
||||||
flagsUiFilterRefactor?: boolean;
|
flagsUiFilterRefactor?: boolean;
|
||||||
|
milestoneProgression?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface IVersionInfo {
|
export interface IVersionInfo {
|
||||||
|
|||||||
@ -60,7 +60,8 @@ export type IFlagKey =
|
|||||||
| 'newStrategyModal'
|
| 'newStrategyModal'
|
||||||
| 'globalChangeRequestList'
|
| 'globalChangeRequestList'
|
||||||
| 'newUiConfigService'
|
| 'newUiConfigService'
|
||||||
| 'flagsUiFilterRefactor';
|
| 'flagsUiFilterRefactor'
|
||||||
|
| 'milestoneProgression';
|
||||||
|
|
||||||
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
||||||
|
|
||||||
@ -277,6 +278,10 @@ const flags: IFlags = {
|
|||||||
process.env.UNLEASH_EXPERIMENTAL_FLAGS_UI_FILTER_REFACTOR,
|
process.env.UNLEASH_EXPERIMENTAL_FLAGS_UI_FILTER_REFACTOR,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
|
milestoneProgression: parseEnvVarBoolean(
|
||||||
|
process.env.UNLEASH_EXPERIMENTAL_MILESTONE_PROGRESSION,
|
||||||
|
false,
|
||||||
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||||
|
|||||||
@ -57,6 +57,7 @@ process.nextTick(async () => {
|
|||||||
globalChangeRequestList: true,
|
globalChangeRequestList: true,
|
||||||
newUiConfigService: true,
|
newUiConfigService: true,
|
||||||
flagsUiFilterRefactor: true,
|
flagsUiFilterRefactor: true,
|
||||||
|
milestoneProgression: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
authentication: {
|
authentication: {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user