summaryrefslogtreecommitdiffstats
path: root/webapp/src/router.js
diff options
context:
space:
mode:
authorJannik Schönartz2019-05-10 15:30:26 +0200
committerJannik Schönartz2019-05-10 15:30:26 +0200
commitb698f1c5f94c3e7122d6418bd23f9c74161f13af (patch)
tree8344506b296fc9ee06952ce83700aeb757363f66 /webapp/src/router.js
parent[webapp] Add screenshot css classes & add Screenshot classes to the User Module (diff)
downloadbas-b698f1c5f94c3e7122d6418bd23f9c74161f13af.tar.gz
bas-b698f1c5f94c3e7122d6418bd23f9c74161f13af.tar.xz
bas-b698f1c5f94c3e7122d6418bd23f9c74161f13af.zip
[webapp] Add a simple home / welcome landing page
Diffstat (limited to 'webapp/src/router.js')
-rw-r--r--webapp/src/router.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/router.js b/webapp/src/router.js
index 470ffec..0c873b0 100644
--- a/webapp/src/router.js
+++ b/webapp/src/router.js
@@ -29,13 +29,13 @@ var router = new Router({
{
path: '/dashboard',
name: 'dashboard',
- redirect: '/dashboard/groups',
+ redirect: '/dashboard/home',
component: DashboardPage,
children: setChildren(DashboardPage.routes().concat(...dashboardCategories.map(c => c.modules)))
},
{
path: '*',
- redirect: '/dashboard/groups'
+ redirect: '/dashboard/home'
}
]
})