aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers
diff options
context:
space:
mode:
authorWouter Admiraal <wouter.admiraal@sonarsource.com>2020-12-18 16:40:07 +0100
committersonartech <sonartech@sonarsource.com>2020-12-22 20:09:39 +0000
commitbdeff0460ea672a798a89a4e7a380ef69c94529b (patch)
tree514fbd34541585b425cd2fc51e93f5e281cbcb1e /server/sonar-web/src/main/js/helpers
parente072bc35a996900aed418762fcee091331efd951 (diff)
downloadsonarqube-bdeff0460ea672a798a89a4e7a380ef69c94529b.tar.gz
sonarqube-bdeff0460ea672a798a89a4e7a380ef69c94529b.zip
SONAR-14290 Improve first time visit to project create screen
Diffstat (limited to 'server/sonar-web/src/main/js/helpers')
-rw-r--r--server/sonar-web/src/main/js/helpers/constants.ts8
1 files changed, 8 insertions, 0 deletions
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/'
+};