]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-20911 Update the Request a free trial URLs in the in-app Marketplace
authorguillaume-peoch-sonarsource <guillaume.peoch@sonarsource.com>
Fri, 27 Oct 2023 14:22:28 +0000 (16:22 +0200)
committersonartech <sonartech@sonarsource.com>
Fri, 27 Oct 2023 20:03:00 +0000 (20:03 +0000)
server/sonar-web/src/main/js/helpers/editions.ts

index e21ce4b4a8526cce2779e39cd42057682630c17c..60ffd509a41fb4e18e1da2c5564b9caa8a8bf146 100644 (file)
@@ -31,19 +31,19 @@ const EDITIONS: { [x in EditionKey]: Edition } = {
   developer: {
     key: EditionKey.developer,
     name: 'Developer Edition',
-    homeUrl: 'https://www.sonarsource.com/plans-and-pricing/developer/',
+    homeUrl: 'https://www.sonarsource.com/products/sonarqube/developer-edition/marketplace/',
     downloadProperty: 'downloadDeveloperUrl',
   },
   enterprise: {
     key: EditionKey.enterprise,
     name: 'Enterprise Edition',
-    homeUrl: 'https://www.sonarsource.com/plans-and-pricing/enterprise/',
+    homeUrl: 'https://www.sonarsource.com/products/sonarqube/enterprise-edition/marketplace/',
     downloadProperty: 'downloadEnterpriseUrl',
   },
   datacenter: {
     key: EditionKey.datacenter,
     name: 'Data Center Edition',
-    homeUrl: 'https://www.sonarsource.com/plans-and-pricing/data-center/',
+    homeUrl: 'https://www.sonarsource.com/products/sonarqube/data-center/marketplace/',
     downloadProperty: 'downloadDatacenterUrl',
   },
 };