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

14 lines
No EOL
266 B
Text

<tr>
<td>
<%= link_to api_key.name, public_api_key_path(api_key) %>
</td>
<td>
<%= api_key.abbreviated %>
</td>
<td>
<%= api_key.created_at.strftime("%b %d, %Y") %>
</td>
<td>
<%= api_key.revoked? ? "Revoked" : "Active" %>
</td>
</tr>