Skip to content

Commit 50c2e6d

Browse files
committed
feat: add join view to router
1 parent 9561f57 commit 50c2e6d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/router/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import WatchlistEdit from '@/views/WatchlistEdit.vue'
1515
import Mentions from '@/views/Mentions.vue'
1616
import Messages from '@/views/Messages.vue'
1717
import PostSearch from '@/views/PostSearch.vue'
18+
import Join from '@/views/Join.vue'
1819
import ConfirmAccount from '@/views/ConfirmAccount.vue'
1920
import Profile from '@/views/Profile.vue'
2021
import Forbidden from '@/views/layout/Forbidden.vue'
@@ -47,6 +48,13 @@ const routes = [
4748
component: ConfirmAccount,
4849
props: true,
4950
meta: { requiresAuth: false, bodyClass: 'confirm' }
51+
},
52+
{
53+
path: '/join',
54+
name: 'Join',
55+
component: Join,
56+
props: true,
57+
meta: { requiresAuth: false, bodyClass: 'join' }
5058
},
5159
{
5260
path: '/boards/:boardSlug',

0 commit comments

Comments
 (0)