From 278891ed71095e8588b2c06105512b58a3f02903 Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Wed, 26 Oct 2022 10:11:11 +0200 Subject: [PATCH] SONAR-17515 add the login-message feature to the response of /api/features/list --- server/sonar-web/src/main/js/types/features.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/server/sonar-web/src/main/js/types/features.ts b/server/sonar-web/src/main/js/types/features.ts index 3309f8f8214..48341cdc564 100644 --- a/server/sonar-web/src/main/js/types/features.ts +++ b/server/sonar-web/src/main/js/types/features.ts @@ -19,10 +19,11 @@ */ export enum Feature { + Announcement = 'announcement', + BranchSupport = 'branch-support', + LoginMessage = 'login-message', MonoRepositoryPullRequestDecoration = 'monorepo', - RegulatoryReport = 'regulatory-reports', - ProjectImport = 'project-import', MultipleAlm = 'multiple-alm', - Announcement = 'announcement', - BranchSupport = 'branch-support' + ProjectImport = 'project-import', + RegulatoryReport = 'regulatory-reports' } -- 2.39.5