transfer Ownership
This commit is contained in:
parent
8f23a688cb
commit
0fb7a563d0
10 changed files with 195 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
import { createRouter, createWebHistory } from "vue-router";
|
||||
import Login from "@/views/Login.vue";
|
||||
|
||||
import { isAuthenticated } from "./authGuards";
|
||||
import { isAuthenticated } from "./authGuard";
|
||||
import { loadAccountData } from "./accountGuard";
|
||||
import { isSetup } from "./setupGuard";
|
||||
import { abilityAndNavUpdate } from "./adminGuard";
|
||||
|
@ -476,6 +476,11 @@ const router = createRouter({
|
|||
name: "account-permission",
|
||||
component: () => import("@/views/account/Permission.vue"),
|
||||
},
|
||||
{
|
||||
path: "administration",
|
||||
name: "account-administration",
|
||||
component: () => import("@/views/account/Administration.vue"),
|
||||
},
|
||||
{
|
||||
path: ":pathMatch(.*)*",
|
||||
name: "account-404",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue