1
0
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:
Mateusz Kwasniewski 2025-10-02 14:28:37 +02:00 committed by GitHub
parent fb5d4cc7a1
commit 6c6d4c0ccc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 1 deletions

View File

@ -89,6 +89,7 @@ export type UiFlags = {
newStrategyModal?: boolean;
globalChangeRequestList?: boolean;
flagsUiFilterRefactor?: boolean;
milestoneProgression?: boolean;
};
export interface IVersionInfo {

View File

@ -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 = {

View File

@ -57,6 +57,7 @@ process.nextTick(async () => {
globalChangeRequestList: true,
newUiConfigService: true,
flagsUiFilterRefactor: true,
milestoneProgression: true,
},
},
authentication: {