debian-mirror-gitlab/app/views/notify/access_token_about_to_expire_email.text.erb

10 lines
407 B
Text
Raw Normal View History

2020-01-01 13:55:28 +05:30
<%= _('Hi %{username}!') % { username: sanitize_name(@user.name) } %>
2021-04-17 20:07:23 +05:30
<%= _('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 %>
2020-01-01 13:55:28 +05:30
2021-09-30 23:02:18 +05:30
<%= _('You can create a new one or check them in your personal access tokens settings %{pat_link}.') % { pat_link: @target_url } %>