From: Matteo Mara Date: Wed, 26 Oct 2022 08:11:11 +0000 (+0200) Subject: SONAR-17515 add the login-message feature to the response of /api/features/list X-Git-Tag: 9.8.0.63668~202 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=278891ed71095e8588b2c06105512b58a3f02903;p=sonarqube.git SONAR-17515 add the login-message feature to the response of /api/features/list --- 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' }