|
@@ -50,6 +50,7 @@ const AdminDashboard = () => import('./components/routes/AdminDashboard')
|
|
|
const AdminModerationReports = () => import('./components/routes/AdminModerationReports')
|
|
|
const AdminModerationBannedUsers = () => import('./components/routes/AdminModerationBannedUsers')
|
|
|
const AdminGeneral = () => import('./components/routes/AdminGeneral')
|
|
|
+const AdminUsers = () => import('./components/routes/AdminUsers')
|
|
|
|
|
|
import NotFound from './components/routes/NotFound'
|
|
|
|
|
@@ -79,6 +80,7 @@ const router = new VueRouter({
|
|
|
{ path: '/admin', redirect: '/admin/dashboard', component: Admin, children: [
|
|
|
{ path: 'dashboard', component: AdminDashboard },
|
|
|
{ path: 'general', component: AdminGeneral },
|
|
|
+ { path: 'users', component: AdminUsers },
|
|
|
{ path: 'moderation', redirect: '/admin/moderation/reports' },
|
|
|
{ path: 'moderation/reports', component: AdminModerationReports },
|
|
|
{ path: 'moderation/bans', component: AdminModerationBannedUsers }
|