From 266cc78530792efb14233ca348b7dd9e9f6d7e30 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 18 Apr 2019 22:35:20 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 3 ++- ayanova/src/App.vue | 8 -------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index ff8f24e1..f58af244 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -48,9 +48,10 @@ All platforms and browsers - Keep the original in the menu though for people that are used to it? - DONE reorganize SAVE, DELETE ETC, put a divider between main form actions and then all the myriad of secondary things - DONE LOCALIZE check all new menu items, some might be not localized (look for ALL CAPS) - - WIRE UP logout link to go to login form and logout properly + - DONE WIRE UP logout link to go to login form and logout properly - WIRE up save menu item and add code to disable save on broken rules (and make red, disabled etc) - Wire up delete menu item + - api code is stubbed out for delete, need to write that as well - Move ABOUT item to just above HELP in menu and remove from main NAV and make it navigate properly on click - DO I need to institute a back button? (in APP MODE?? installed to "desktop" on device will I be able to easily navigate without back and forward buttons) diff --git a/ayanova/src/App.vue b/ayanova/src/App.vue index a63d4e24..c6aad8bb 100644 --- a/ayanova/src/App.vue +++ b/ayanova/src/App.vue @@ -132,14 +132,6 @@ export default { this.$router.replace({ name: "login" }); } }, - // methods: { - // setAuthenticated(status) { - // this.$store.state.authenticated = status; - // }, - // logout() { - // this.$store.state.authenticated = false; - // } - // }, computed: { isAuthenticated() { return this.$store.state.authenticated === true;