Show only "app_name" and "valid_until" (OAuth tokens table)
This commit is contained in:
parent
afbe524a2e
commit
c71f411ad6
3 changed files with 5 additions and 14 deletions
|
@ -126,16 +126,14 @@
|
|||
<table class="oauth-tokens">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{$t('settings.token')}}</th>
|
||||
<th>{{$t('settings.refresh_token')}}</th>
|
||||
<th>{{$t('settings.app_name')}}</th>
|
||||
<th>{{$t('settings.valid_until')}}</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="oauthToken in oauthTokens" :key="oauthToken.id">
|
||||
<td>{{oauthToken.token}}</td>
|
||||
<td>{{oauthToken.refreshToken}}</td>
|
||||
<td>{{oauthToken.appName}}</td>
|
||||
<td>{{oauthToken.validUntil}}</td>
|
||||
<td class="actions">
|
||||
<button class="btn btn-default" @click="revokeToken(oauthToken.id)">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue