Skip to content

Commit

Permalink
feat: add join view to router
Browse files Browse the repository at this point in the history
  • Loading branch information
akinsey committed Feb 3, 2022
1 parent 9561f57 commit 50c2e6d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import WatchlistEdit from '@/views/WatchlistEdit.vue'
import Mentions from '@/views/Mentions.vue'
import Messages from '@/views/Messages.vue'
import PostSearch from '@/views/PostSearch.vue'
import Join from '@/views/Join.vue'
import ConfirmAccount from '@/views/ConfirmAccount.vue'
import Profile from '@/views/Profile.vue'
import Forbidden from '@/views/layout/Forbidden.vue'
Expand Down Expand Up @@ -47,6 +48,13 @@ const routes = [
component: ConfirmAccount,
props: true,
meta: { requiresAuth: false, bodyClass: 'confirm' }
},
{
path: '/join',
name: 'Join',
component: Join,
props: true,
meta: { requiresAuth: false, bodyClass: 'join' }
},
{
path: '/boards/:boardSlug',
Expand Down

0 comments on commit 50c2e6d

Please sign in to comment.