diff options
author | Belen Pruvost <belen.pruvost@sonarsource.com> | 2021-04-29 17:30:41 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-04-29 20:03:32 +0000 |
commit | 7b297b7bb6287d8b5f6e0d6c66f210c062f7d1a1 (patch) | |
tree | efc2128a8f3ad840fdaac8ea3f2b7766ec9cea01 /sonar-plugin-api/src | |
parent | d62debd109bd54064ee87ab513886958b0e58b48 (diff) | |
download | sonarqube-7b297b7bb6287d8b5f6e0d6c66f210c062f7d1a1.tar.gz sonarqube-7b297b7bb6287d8b5f6e0d6c66f210c062f7d1a1.zip |
SONAR-14682 - Make webhook validation configurable
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java index 08dfa2c6f78..b3ef7e3050e 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java @@ -205,6 +205,8 @@ public interface CoreProperties { boolean CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE = true; String CORE_ALLOW_PERMISSION_MANAGEMENT_FOR_PROJECT_ADMINS_PROPERTY = "sonar.allowPermissionManagementForProjectAdmins"; boolean CORE_ALLOW_PERMISSION_MANAGEMENT_FOR_PROJECT_ADMINS_DEFAULT_VALUE = true; + String SONAR_VALIDATE_WEBHOOKS_PROPERTY = "sonar.validateWebhooks"; + boolean SONAR_VALIDATE_WEBHOOKS_DEFAULT_VALUE = true; /** * @deprecated since 2.14. See http://jira.sonarsource.com/browse/SONAR-3153. Replaced by {@link #CORE_AUTHENTICATOR_REALM}. |