UI Feature Flag: Identity server

This commit is contained in:
Michael Telatynski 2020-09-16 14:45:34 +01:00
parent f4f94e31d1
commit d3c84e25f5
4 changed files with 76 additions and 25 deletions

View file

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

View file

@ -18,4 +18,5 @@ limitations under the License.
export enum UIFeature {
URLPreviews = "UIFeature.urlPreviews",
Widgets = "UIFeature.widgets",
IdentityServer = "UIFeature.identityServer",
}