From a1dced443951bd62e2852f5e96ba3f8a4dc45ed4 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 23 Jul 2021 14:28:27 -0300 Subject: Version 1 of migration tool. It really, REALLY needs to catch failures. Otherwise player may accidentaly create a Vault account and become inelegible. And there is no cool and convenient tool to shut down a Vault account >.> --- src/router/index.ts | 5 + src/views/Migration.vue | 356 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 361 insertions(+) create mode 100644 src/views/Migration.vue 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 @@ -35,6 +35,11 @@ const routes: Array = [ name: "registration", component: () => import(/* webpackChunkName: "registration" */ "../views/Registration.vue"), }, + { + path: "/migration", + name: "migration", + component: () => import(/* webpackChunkName: "migration" */ "../views/Migration.vue"), + }, { path: "/404:pathMatch(.*)", alias: "/:pathMatch(.*)", diff --git a/src/views/Migration.vue b/src/views/Migration.vue new file mode 100644 index 0000000..6f82779 --- /dev/null +++ b/src/views/Migration.vue @@ -0,0 +1,356 @@ + + + + + -- cgit v1.2.3-60-g2f50