From 3036e44114130bc749de1a05488db362629f8935 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 10 Jun 2020 22:39:54 +0000 Subject: [PATCH] --- ayanova/src/api/gzapi.js | 1 + ayanova/src/api/translation.js | 1 + ayanova/src/router.js | 7 +- ayanova/src/views/adm-launch.vue | 329 +++++++++++++++++++++++++++++++ 4 files changed, 337 insertions(+), 1 deletion(-) create mode 100644 ayanova/src/views/adm-launch.vue diff --git a/ayanova/src/api/gzapi.js b/ayanova/src/api/gzapi.js index 87e3deb4..dd728cc1 100644 --- a/ayanova/src/api/gzapi.js +++ b/ayanova/src/api/gzapi.js @@ -431,6 +431,7 @@ export default { // Test delay for troubleshooting // doDelayAsync: () => { + // eslint-disable-next-line return new Promise((resolve) => { setTimeout(() => resolve("I did something"), 10000); }); diff --git a/ayanova/src/api/translation.js b/ayanova/src/api/translation.js index c04c727e..36162131 100644 --- a/ayanova/src/api/translation.js +++ b/ayanova/src/api/translation.js @@ -46,6 +46,7 @@ export default { //Keys that will always be required for any AyaNova work for any user coreKeys: [ //main nav options + "Launch", "Home", "Dashboard", "Schedule", diff --git a/ayanova/src/router.js b/ayanova/src/router.js index 826da0cf..f3a5071c 100644 --- a/ayanova/src/router.js +++ b/ayanova/src/router.js @@ -275,7 +275,12 @@ export default new Router({ component: () => import(/* webpackChunkName: "acc" */ "./views/acc-accounting.vue") }, - + { + path: "/adm-launch", + name: "adm-launch", + component: () => + import(/* webpackChunkName: "adm" */ "./views/adm-launch.vue") + }, { path: "/adm-global-settings", name: "adm-global-settings", diff --git a/ayanova/src/views/adm-launch.vue b/ayanova/src/views/adm-launch.vue new file mode 100644 index 00000000..c797e237 --- /dev/null +++ b/ayanova/src/views/adm-launch.vue @@ -0,0 +1,329 @@ + + +