From e080a1a7593e83a49d623ffdd452fd0e1c617889 Mon Sep 17 00:00:00 2001 From: Derick Montague Date: Wed, 4 Dec 2019 16:30:08 -0600 Subject: Add login and logout functionality - Add AuthenticationStore - Add ability to login and logout - Add route navigation guard - Add login styles - Add temporary authentication for api call - Add Login directory - Add index.js In order to login a .env.development.local file that contains BASE_URL="https:// or " Signed-off-by: Derick Montague Change-Id: I88b93e287e66f4bae82a1ec2934cdef12d78264e --- src/store/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/store/index.js') diff --git a/src/store/index.js b/src/store/index.js index af06a471..b4be6ccd 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1,8 +1,9 @@ import Vue from "vue"; import Vuex from "vuex"; -import LocalUserManagementStore from "./modules/AccessControl/LocalUserMangementStore"; import GlobalStore from "./modules/GlobalStore"; +import AuthenticationStore from "./modules/Authentication/AuthenticanStore"; +import LocalUserManagementStore from "./modules/AccessControl/LocalUserMangementStore"; Vue.use(Vuex); @@ -12,6 +13,7 @@ export default new Vuex.Store({ actions: {}, modules: { global: GlobalStore, + authentication: AuthenticationStore, localUsers: LocalUserManagementStore } }); -- cgit v1.2.3