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

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

<%= _('SSH keys with the following fingerprints have expired and can no longer be used:') %>

<% @fingerprints.each do |fingerprint| %>
  - <%= fingerprint %>
<% end %>

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