Merge pull request #5215 from matrix-org/t3chguy/fix/15179

UI Feature Flag: Disable advanced options and tidy up some copy
This commit is contained in:
Michael Telatynski
2020-09-18 12:34:38 +01:00
committed by GitHub
6 changed files with 43 additions and 24 deletions

View File

@@ -660,4 +660,8 @@ export const SETTINGS: {[setting: string]: ISetting} = {
supportedLevels: LEVELS_UI_FEATURE,
default: true,
},
[UIFeature.AdvancedSettings]: {
supportedLevels: LEVELS_UI_FEATURE,
default: true,
},
};

View File

@@ -28,4 +28,5 @@ export enum UIFeature {
IdentityServer = "UIFeature.identityServer",
ThirdPartyID = "UIFeature.thirdPartyId",
Flair = "UIFeature.flair",
AdvancedSettings = "UIFeature.advancedSettings",
}