summaryrefslogtreecommitdiff
path: root/app/views/notify/access_token_revoked_email.text.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/notify/access_token_revoked_email.text.erb')
-rw-r--r--app/views/notify/access_token_revoked_email.text.erb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/notify/access_token_revoked_email.text.erb b/app/views/notify/access_token_revoked_email.text.erb
index 17dd628d76c..a0623f96488 100644
--- a/app/views/notify/access_token_revoked_email.text.erb
+++ b/app/views/notify/access_token_revoked_email.text.erb
@@ -1,5 +1,9 @@
<%= _('Hi %{username}!') % { username: sanitize_name(@user.name) } %>
<%= _('A personal access token, named %{token_name}, has been revoked.') % { token_name: @token_name } %>
+<% if @source == 'secret_detection' %>
+
+<%= _('We found your token in a public project and have automatically revoked it to protect your account.') %>
+<% end %>
<%= _('You can check your tokens or create a new one in your personal access tokens settings %{pat_link}.') % { pat_link: @target_url } %>