discourse/app/assets/javascripts/admin/addon/templates/api-keys-index.hbs

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

72 lines
2.2 KiB
Handlebars
Raw Normal View History

{{d-button
class="btn-primary"
action=(route-action "new")
icon="plus"
label="admin.api.new_key"}}
{{#if model}}
2019-01-23 11:40:05 -05:00
<table class="api-keys grid">
2018-07-02 23:14:53 -04:00
<thead>
2019-01-23 11:40:05 -05:00
<th>{{i18n "admin.api.key"}}</th>
<th>{{i18n "admin.api.description"}}</th>
2019-01-23 11:40:05 -05:00
<th>{{i18n "admin.api.user"}}</th>
<th>{{i18n "admin.api.created"}}</th>
<th>{{i18n "admin.api.last_used"}}</th>
<th>&nbsp;</th>
2018-07-02 23:14:53 -04:00
</thead>
<tbody>
{{#each model as |k|}}
<tr class={{if k.revoked_at "revoked"}}>
<td class="key">
{{#if k.revoked_at}}{{d-icon "times-circle"}}{{/if}}
{{k.truncatedKey}}
</td>
<td class="key-description">
{{k.shortDescription}}
</td>
2018-07-02 23:14:53 -04:00
<td class="key-user">
<div class="label">{{i18n "admin.api.user"}}</div>
2018-07-02 23:14:53 -04:00
{{#if k.user}}
2019-01-23 11:40:05 -05:00
{{#link-to "adminUser" k.user}}
2018-07-02 23:14:53 -04:00
{{avatar k.user imageSize="small"}}
{{/link-to}}
{{else}}
2019-01-23 11:40:05 -05:00
{{i18n "admin.api.all_users"}}
2018-07-02 23:14:53 -04:00
{{/if}}
</td>
<td class="key-created">
<div class="label">{{i18n "admin.api.created"}}</div>
{{format-date k.created_at}}
</td>
<td class="key-last-used">
<div class="label">{{i18n "admin.api.last_used"}}</div>
{{#if k.last_used_at}}
{{format-date k.last_used_at}}
{{else}}
{{i18n "admin.api.never_used"}}
{{/if}}
</td>
2018-07-02 23:14:53 -04:00
<td class="key-controls">
{{d-button action=(route-action "show" k) icon="far-eye" title="admin.api.show_details"}}
{{#if k.revoked_at}}
{{d-button
action=(action "undoRevokeKey")
actionParam=k icon="undo"
title="admin.api.undo_revoke"}}
{{else}}
{{d-button
class="btn-danger"
action=(action "revokeKey")
actionParam=k
icon="times"
title="admin.api.revoke"}}
{{/if}}
2018-07-02 23:14:53 -04:00
</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
2019-01-23 11:40:05 -05:00
<p>{{i18n "admin.api.none"}}</p>
{{/if}}