feat(doc): move permissions

This commit is contained in:
thomas
2023-10-18 10:02:38 +02:00
parent 5ea1d0c1c7
commit 7c52b6099f
26 changed files with 23 additions and 23 deletions

View File

@@ -0,0 +1,14 @@
export const APP_ROUTES = [
{
path: '',
loadComponent: () =>
import('./login.component').then((m) => m.LoginComponent),
},
{
path: 'enter',
loadComponent: () =>
import('./dashboard/admin.component').then(
(m) => m.AdminDashboardComponent
),
},
];