mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 08:23:09 +02:00
Fix: アクセストークン管理画面、アカウント管理画面表示できないのを修正 (#9064)
* Fix: apps page routing * Fix: accounts page routing * Fix: router name
This commit is contained in:
parent
dddc076d01
commit
253f005e80
1 changed files with 8 additions and 0 deletions
|
@ -133,6 +133,10 @@ export const routes = [{
|
||||||
path: '/api',
|
path: '/api',
|
||||||
name: 'api',
|
name: 'api',
|
||||||
component: page(() => import('./pages/settings/api.vue')),
|
component: page(() => import('./pages/settings/api.vue')),
|
||||||
|
}, {
|
||||||
|
path: '/apps',
|
||||||
|
name: 'api',
|
||||||
|
component: page(() => import('./pages/settings/apps.vue')),
|
||||||
}, {
|
}, {
|
||||||
path: '/webhook/edit/:webhookId',
|
path: '/webhook/edit/:webhookId',
|
||||||
name: 'webhook',
|
name: 'webhook',
|
||||||
|
@ -157,6 +161,10 @@ export const routes = [{
|
||||||
path: '/custom-css',
|
path: '/custom-css',
|
||||||
name: 'general',
|
name: 'general',
|
||||||
component: page(() => import('./pages/settings/custom-css.vue')),
|
component: page(() => import('./pages/settings/custom-css.vue')),
|
||||||
|
}, {
|
||||||
|
path: '/accounts',
|
||||||
|
name: 'profile',
|
||||||
|
component: page(() => import('./pages/settings/accounts.vue')),
|
||||||
}, {
|
}, {
|
||||||
path: '/account-info',
|
path: '/account-info',
|
||||||
name: 'other',
|
name: 'other',
|
||||||
|
|
Loading…
Reference in a new issue