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

resource_access_tokens_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: bea74f091293dc2f65b8d2f68968036208c43fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
<%= _('Hi %{username}!') % { username: sanitize_name(@user.name) } %>

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

<%= "#{@resource.class.name.titleize}: #{@resource.full_path}" %>

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

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