theseus/app/views/api_keys/_api_key.html.erb
2025-05-31 23:25:41 -04:00

19 lines
No EOL
519 B
Text

<article>
<h3>
<%= link_to api_key do %><%= api_key.pretty_name %> <% end %>
<% if api_key.active? %>
<div class="badge success float-right">
active
</div>
<% else %>
<div class="badge error float-right">
revoked
</div>
<% end %>
</h3>
<%= render 'shared/user_mention', user: api_key.user %>
<b>PII:</b> <%= render_checkbox api_key.pii %>
<% if api_key.may_impersonate? %> <br/>
<b>impersonate:</b> <%= render_checkbox true %>
<% end %>
</article>