From 35f8e5c4eb3f05685ea73aec6f0a2911200a61df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 20 Apr 2020 10:11:39 +0200 Subject: [PATCH] Fix vue router urls to match with pre-vue ones MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/router.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/router.js b/src/router.js index 285cf93d4..e1bd1c81e 100644 --- a/src/router.js +++ b/src/router.js @@ -42,7 +42,7 @@ export default new Router({ component: Boards, }, { - path: '/boards', + path: '/board', name: 'boards', component: Boards, props: { @@ -50,7 +50,7 @@ export default new Router({ }, }, { - path: '/boards/archived', + path: '/board/archived', name: 'boards.archived', component: Boards, props: { @@ -58,7 +58,7 @@ export default new Router({ }, }, { - path: '/boards/shared', + path: '/board/shared', name: 'boards.shared', component: Boards, props: { @@ -66,7 +66,7 @@ export default new Router({ }, }, { - path: '/boards/:id', + path: '/board/:id', name: 'board', components: { default: Board, @@ -101,7 +101,7 @@ export default new Router({ }, }, { - path: 'cards/:cardId', + path: 'card/:cardId', name: 'card', components: { sidebar: CardSidebar,