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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
459 B
Text
Raw Normal View History

2020-10-24 23:57:45 +05:30
<%= _('Hi %{username}!') % { username: sanitize_name(@user.name) } %>
2023-03-17 16:20:25 +05:30
<%- if @token_names.empty? -%>
<%= _('One or more of your personal access tokens have expired.') %>
<%- else -%>
<%= _('The following personal access tokens have expired:') %>
<%- @token_names.each do |token| -%>
- <%= token %>
<%- end -%>
<%- end -%>
2020-10-24 23:57:45 +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 } %>