diff options
author | Dimitris <104737204+dimitris-kavvathas-sonarsource@users.noreply.github.com> | 2023-06-15 15:49:19 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-07-03 20:03:25 +0000 |
commit | a7431823ca6954ea04fc663e6dcb6cd9e55cc11d (patch) | |
tree | 5ea137fb1992d53e946f334929d337b87146fbe6 /sonar-core | |
parent | 7101b666dc952fce6dedece3a515d495adfdc84c (diff) | |
download | sonarqube-a7431823ca6954ea04fc663e6dcb6cd9e55cc11d.tar.gz sonarqube-a7431823ca6954ea04fc663e6dcb6cd9e55cc11d.zip |
SONAR-18835 Make webhook secret private (#8479)
Co-authored-by: Ambroise C <ambroise.christea@sonarsource.com>
(cherry picked from commit 441a87e76b1fab056a23b1773364063ab50e6978)
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index 888dd0d9332..9f78437bb71 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -4473,9 +4473,12 @@ webhooks.name.required=Name is required. webhooks.no_result=No webhook defined. webhooks.update=Update Webhook webhooks.secret=Secret -webhooks.secret_header=Secret? +webhooks.secret_header=Has secret? webhooks.secret.bad_format=Secret must have a maximum length of 200 characters -webhooks.secret.description=If provided, secret will be used as the key to generate the HMAC hex (lowercase) digest value in the 'X-Sonar-Webhook-HMAC-SHA256' header +webhooks.secret.description=If provided, secret will be used as the key to generate the HMAC hex (lowercase) digest value in the 'X-Sonar-Webhook-HMAC-SHA256' header. +webhooks.secret.description.update=If blank, any secret previously configured will be removed. If not set, the secret will remain unchanged. +webhooks.secret.field_mask.description=Hidden for security reasons. +webhooks.secret.field_mask.link=Click here to update the secret webhooks.url=URL webhooks.url.bad_format=Bad format of URL. webhooks.url.bad_protocol=URL must start with "http://" or "https://". |