Erster Aufbau Forum
This commit is contained in:
@@ -13,6 +13,9 @@ import AdminContactsView from '../views/admin/ContactsView.vue';
|
||||
import SearchView from '../views/social/SearchView.vue';
|
||||
import GalleryView from '../views/social/GalleryView.vue';
|
||||
import GuestbookView from '../views/social/GuestbookView.vue';
|
||||
import DiaryView from '../views/social/DiaryView.vue';
|
||||
import ForumAdminView from '../dialogues/admin/ForumAdminView.vue';
|
||||
import ForumView from '../views/social/ForumView.vue';
|
||||
|
||||
const routes = [
|
||||
{
|
||||
@@ -43,6 +46,18 @@ const routes = [
|
||||
component: GalleryView,
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/socialnetwork/forum/:id',
|
||||
name: 'Forum',
|
||||
component: ForumView,
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/socialnetwork/diary',
|
||||
name: 'Diary',
|
||||
component: DiaryView,
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/settings/personal',
|
||||
name: 'Personal settings',
|
||||
@@ -91,6 +106,12 @@ const routes = [
|
||||
component: AdminContactsView,
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/admin/forum',
|
||||
name: 'AdminForums',
|
||||
component: ForumAdminView,
|
||||
meta: { requiresAuth: true }
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user