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

48 lines
1.1 KiB
Handlebars
Raw Normal View History

{{#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.user"}}</th>
<th>&nbsp;</th>
2018-07-02 23:14:53 -04:00
</thead>
<tbody>
{{#each model as |k|}}
<tr>
2019-01-23 11:40:05 -05:00
<td class="key">{{k.key}}</td>
2018-07-02 23:14:53 -04:00
<td class="key-user">
{{#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-controls">
2019-01-23 11:40:05 -05:00
{{d-button
class="btn-default"
action=(action "regenerateKey")
actionParam=k icon="undo"
label="admin.api.regenerate"}}
{{d-button
class="btn-default"
action=(action "revokeKey")
actionParam=k
icon="times"
label="admin.api.revoke"}}
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}}
{{#unless hasMasterKey}}
2019-01-23 11:40:05 -05:00
{{d-button
class="btn-primary"
action=(action "generateMasterKey")
icon="key"}}
{{/unless}}