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

access_token_about_to_expire_email.text.erb « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39608f0d6bd38d8a9d2e1f46c146fcd5b4fd76e5 (plain)
1
2
3
4
5
6
7
8
9
<%= _('Hi %{username}!') % { username: sanitize_name(@user.name) } %>

<%= _('One or more of your personal access tokens will expire in %{days_to_expire} days or less:') % { days_to_expire: @days_to_expire } %>

<% @token_names.each do |token| %>
  - <%= token %>
<% end %>

<%= _('You can create a new one or check them in your personal access tokens settings %{pat_link}.') % { pat_link: @target_url } %>