Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorGitLab Release Tools Bot <robert+release-tools@gitlab.com>2019-10-29 18:58:06 +0300
committerGitLab Release Tools Bot <robert+release-tools@gitlab.com>2019-10-29 18:58:06 +0300
commitd7f9136904d164afd7b1ac236f6f814729083e61 (patch)
tree8d7c2d11dd2f34870c709121188cce79bb45185b /app/views
parent417e58fdc57523f11bb57f8aca7ff9121c3d3ee9 (diff)
parent576818b578be87a90c60c1e734fd5f6df48bb82f (diff)
Merge branch 'security-mask-sentry-token-ce' into 'master'
Mask sentry auth token See merge request gitlab/gitlabhq!3462
Diffstat (limited to 'app/views')
-rw-r--r--app/views/projects/settings/operations/_error_tracking.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/settings/operations/_error_tracking.html.haml b/app/views/projects/settings/operations/_error_tracking.html.haml
index 583fc08f375..589d3037eba 100644
--- a/app/views/projects/settings/operations/_error_tracking.html.haml
+++ b/app/views/projects/settings/operations/_error_tracking.html.haml
@@ -17,4 +17,4 @@
project: error_tracking_setting_project_json,
api_host: setting.api_host,
enabled: setting.enabled.to_json,
- token: setting.token } }
+ token: setting.token.present? ? '*' * 12 : nil } }