From bdeff0460ea672a798a89a4e7a380ef69c94529b Mon Sep 17 00:00:00 2001 From: Wouter Admiraal Date: Fri, 18 Dec 2020 16:40:07 +0100 Subject: SONAR-14290 Improve first time visit to project create screen --- server/sonar-web/src/main/js/helpers/constants.ts | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'server/sonar-web/src/main/js/helpers') diff --git a/server/sonar-web/src/main/js/helpers/constants.ts b/server/sonar-web/src/main/js/helpers/constants.ts index 5bf81e56973..c081f428ff2 100644 --- a/server/sonar-web/src/main/js/helpers/constants.ts +++ b/server/sonar-web/src/main/js/helpers/constants.ts @@ -18,6 +18,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import { colors } from '../app/theme'; +import { AlmKeys } from '../types/alm-settings'; import { ComponentQualifier } from '../types/component'; import { IssueScope, IssueType } from '../types/issues'; @@ -61,3 +62,10 @@ export const RATING_COLORS = [ ]; export const PROJECT_KEY_MAX_LEN = 400; + +export const ALM_DOCUMENTATION_PATHS = { + [AlmKeys.Azure]: '/documentation/analysis/azuredevops-integration/', + [AlmKeys.Bitbucket]: '/documentation/analysis/bitbucket-integration/', + [AlmKeys.GitHub]: '/documentation/analysis/github-integration/', + [AlmKeys.GitLab]: '/documentation/analysis/gitlab-integration/' +}; -- cgit v1.2.3