summaryrefslogtreecommitdiff
path: root/src/router/index.ts
diff options
context:
space:
mode:
authorJesusaves <jesusalva@themanaworld.org>2021-08-29 18:01:55 -0300
committerGitHub <noreply@github.com>2021-08-29 21:01:55 +0000
commit648d23e4130dff16ebd826f1b664dfbc353c2da5 (patch)
tree7bc3df090cea4636a62cd8720ec296c7ad01d99a /src/router/index.ts
parent37a7889c9c7ebb7f63ed75de12516a4cfed2443c (diff)
downloadwebsite-648d23e4130dff16ebd826f1b664dfbc353c2da5.tar.gz
website-648d23e4130dff16ebd826f1b664dfbc353c2da5.tar.bz2
website-648d23e4130dff16ebd826f1b664dfbc353c2da5.tar.xz
website-648d23e4130dff16ebd826f1b664dfbc353c2da5.zip
Version 1 of migration tool. (#47)
Version 1 of migration tool. It really, REALLY needs to catch failures. Otherwise player may accidentally create a Vault account and become ineligible. And there is no cool and convenient tool to shut down a Vault account >.>
Diffstat (limited to 'src/router/index.ts')
-rw-r--r--src/router/index.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/router/index.ts b/src/router/index.ts
index 04828e4..99267f9 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -36,6 +36,11 @@ const routes: Array<RouteRecordRaw> = [
component: () => import(/* webpackChunkName: "registration" */ "../views/Registration.vue"),
},
{
+ path: "/migration",
+ name: "migration",
+ component: () => import(/* webpackChunkName: "migration" */ "../views/Migration.vue"),
+ },
+ {
path: "/404:pathMatch(.*)",
alias: "/:pathMatch(.*)",
name: "not found",