diff options
author | Mathieu Suen <mathieu.suen@sonarsource.com> | 2022-10-19 22:59:57 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-10-24 20:04:04 +0000 |
commit | eb249087f989c12a7e25c72a91a8eb7cd3ef0a9d (patch) | |
tree | 4b2cddd7eb1efdddf62978eceebc3b50d9093f95 /server/sonar-web/src/main/js/helpers/constants.ts | |
parent | 3e5e886cab8c75cc587f4978510343e29bc33d95 (diff) | |
download | sonarqube-eb249087f989c12a7e25c72a91a8eb7cd3ef0a9d.tar.gz sonarqube-eb249087f989c12a7e25c72a91a8eb7cd3ef0a9d.zip |
SONAR-17221 Documentation links change to static documentation site
- Remove markdown injection
- Redirection for old documentation link to the static site
- Drop the static documentation app
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/constants.ts')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/constants.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/helpers/constants.ts b/server/sonar-web/src/main/js/helpers/constants.ts index 9da9a03c8e9..0f73991916f 100644 --- a/server/sonar-web/src/main/js/helpers/constants.ts +++ b/server/sonar-web/src/main/js/helpers/constants.ts @@ -57,11 +57,11 @@ export const RATING_COLORS = [ export const PROJECT_KEY_MAX_LEN = 400; export const ALM_DOCUMENTATION_PATHS = { - [AlmKeys.Azure]: '/documentation/analysis/azuredevops-integration/', - [AlmKeys.BitbucketServer]: '/documentation/analysis/bitbucket-integration/', - [AlmKeys.BitbucketCloud]: '/documentation/analysis/bitbucket-cloud-integration/', - [AlmKeys.GitHub]: '/documentation/analysis/github-integration/', - [AlmKeys.GitLab]: '/documentation/analysis/gitlab-integration/' + [AlmKeys.Azure]: '/analysis/azuredevops-integration/', + [AlmKeys.BitbucketServer]: '/analysis/bitbucket-integration/', + [AlmKeys.BitbucketCloud]: '/analysis/bitbucket-cloud-integration/', + [AlmKeys.GitHub]: '/analysis/github-integration/', + [AlmKeys.GitLab]: '/analysis/gitlab-integration/' }; export const IMPORT_COMPATIBLE_ALMS = [ |