aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers
diff options
context:
space:
mode:
authorWouter Admiraal <wouter.admiraal@sonarsource.com>2023-01-13 16:44:23 +0100
committersonartech <sonartech@sonarsource.com>2023-01-17 20:02:59 +0000
commit4a183772d0a5f88c5f9693ea4726695ef4f562d1 (patch)
tree76f0be248aca4568ab6f8d9e34d19e191eea0101 /server/sonar-web/src/main/js/helpers
parent04f7a37abda3e7b3bd599b68c5e26c403ecfcfc9 (diff)
downloadsonarqube-4a183772d0a5f88c5f9693ea4726695ef4f562d1.tar.gz
sonarqube-4a183772d0a5f88c5f9693ea4726695ef4f562d1.zip
SONAR-17732 Remove all usage of redirect.sonarsource.com
Diffstat (limited to 'server/sonar-web/src/main/js/helpers')
-rw-r--r--server/sonar-web/src/main/js/helpers/editions.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/helpers/editions.ts b/server/sonar-web/src/main/js/helpers/editions.ts
index b85ee1f18e3..79d52d9a2a4 100644
--- a/server/sonar-web/src/main/js/helpers/editions.ts
+++ b/server/sonar-web/src/main/js/helpers/editions.ts
@@ -25,25 +25,25 @@ const EDITIONS: { [x in EditionKey]: Edition } = {
community: {
key: EditionKey.community,
name: 'Community Edition',
- homeUrl: 'https://redirect.sonarsource.com/editions/community.html',
+ homeUrl: 'https://www.sonarsource.com/open-source-editions/',
downloadProperty: 'downloadUrl',
},
developer: {
key: EditionKey.developer,
name: 'Developer Edition',
- homeUrl: 'https://redirect.sonarsource.com/editions/developer.html',
+ homeUrl: 'https://www.sonarsource.com/plans-and-pricing/developer/',
downloadProperty: 'downloadDeveloperUrl',
},
enterprise: {
key: EditionKey.enterprise,
name: 'Enterprise Edition',
- homeUrl: 'https://redirect.sonarsource.com/editions/enterprise.html',
+ homeUrl: 'https://www.sonarsource.com/plans-and-pricing/enterprise/',
downloadProperty: 'downloadEnterpriseUrl',
},
datacenter: {
key: EditionKey.datacenter,
name: 'Data Center Edition',
- homeUrl: 'https://redirect.sonarsource.com/editions/datacenter.html',
+ homeUrl: 'https://www.sonarsource.com/plans-and-pricing/data-center/',
downloadProperty: 'downloadDatacenterUrl',
},
};