aboutsummaryrefslogtreecommitdiffstats
path: root/apps/oauth2/src/App.vue
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-10-26 17:27:21 +0200
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-10-27 09:55:45 +0200
commitfbc970855fce4e122c404679c1cc61dbb0ce7afc (patch)
treef3e667a55900d3eed41a353caaa9d84c1ba45538 /apps/oauth2/src/App.vue
parentee1480cefc342578a2ee7539e4761abf59ac4a96 (diff)
downloadnextcloud-server-fbc970855fce4e122c404679c1cc61dbb0ce7afc.tar.gz
nextcloud-server-fbc970855fce4e122c404679c1cc61dbb0ce7afc.zip
Create semantically right table for the "OAuth 2.0 clients"
Adapt styles Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/oauth2/src/App.vue')
-rw-r--r--apps/oauth2/src/App.vue19
1 files changed, 15 insertions, 4 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue
index 5fb60df0120..71cf22dbf89 100644
--- a/apps/oauth2/src/App.vue
+++ b/apps/oauth2/src/App.vue
@@ -26,9 +26,20 @@
<table v-if="clients.length > 0" class="grid">
<thead>
<tr>
- <th id="headerContent" />
- <th id="headerRemove">
-&nbsp;
+ <th>
+ {{ t('oauth2', 'Name') }}
+ </th>
+ <th>
+ {{ t('oauth2', 'Redirection URI') }}
+ </th>
+ <th>
+ {{ t('oauth2', 'Client Identifier') }}
+ </th>
+ <th>
+ {{ t('oauth2', 'Secret key') }}
+ </th>
+ <th>
+ {{ t('oauth2', 'Delete client') }}
</th>
</tr>
</thead>
@@ -121,7 +132,7 @@ export default {
{
name: this.newClient.name,
redirectUri: this.newClient.redirectUri,
- }
+ },
).then(response => {
// eslint-disable-next-line vue/no-mutating-props
this.clients.push(response.data)