aboutsummaryrefslogtreecommitdiff
path: root/src/site/router
diff options
context:
space:
mode:
authorPitu <[email protected]>2018-09-17 04:38:25 -0300
committerPitu <[email protected]>2018-09-17 04:38:25 -0300
commitc2c6e99878853fafdbd5e708c3163921f8529ae1 (patch)
tree8313268655c19bc74497172ee1d0642a52e93984 /src/site/router
parentThis route should handle more stuff, so it does now (diff)
downloadhost.fuwn.me-c2c6e99878853fafdbd5e708c3163921f8529ae1.tar.xz
host.fuwn.me-c2c6e99878853fafdbd5e708c3163921f8529ae1.zip
Public albums wooo!
Diffstat (limited to 'src/site/router')
-rw-r--r--src/site/router/index.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/site/router/index.js b/src/site/router/index.js
index d1be2a6..7b9b051 100644
--- a/src/site/router/index.js
+++ b/src/site/router/index.js
@@ -12,6 +12,7 @@ const router = new Router({
{ path: '/dashboard', component: () => import('../views/Dashboard/Uploads.vue') },
{ path: '/dashboard/albums', component: () => import('../views/Dashboard/Albums.vue') },
{ path: '/dashboard/settings', component: () => import('../views/Dashboard/Settings.vue') },
+ { path: '/a/:identifier', component: () => import('../views/PublicAlbum.vue'), props: true }
// { path: '*', component: () => import('../views/NotFound.vue') }
]
});