diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-14 22:35:47 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-15 09:43:58 +0100 |
commit | 513c88cf9eabec3ba2359f642350458fe6dd654c (patch) | |
tree | 2a655ab46c073ced2d86369cd9247c491da9dc7d /sonar-core/src | |
parent | 46d104a932e63652b086c511b80c02fefe6f4203 (diff) | |
download | sonarqube-513c88cf9eabec3ba2359f642350458fe6dd654c.tar.gz sonarqube-513c88cf9eabec3ba2359f642350458fe6dd654c.zip |
SONAR-8351 fix link to documentation in webhook settings
Diffstat (limited to 'sonar-core/src')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/WebhookProperties.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/WebhookProperties.java b/sonar-core/src/main/java/org/sonar/core/config/WebhookProperties.java index 4b173b130a8..daaa1ac9693 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/WebhookProperties.java +++ b/sonar-core/src/main/java/org/sonar/core/config/WebhookProperties.java @@ -49,7 +49,7 @@ public class WebhookProperties { private static final String CATEGORY = "webhooks"; private static final String DESCRIPTION = "Webhooks are used to notify external services when a project analysis is done. " + "An HTTP POST request including a JSON payload is sent to each of the first ten provided URLs. <br/>" + - "Learn more in the <a href=\"#\">Webhooks documentation</a>."; + "Learn more in the <a href=\"http://docs.sonarqube.org/display/SONARNEXT/Webhooks\">Webhooks documentation</a>."; private WebhookProperties() { // only static stuff |