blob: b4be6ccd0207db160d279f1c3eaab46d1b547cdb [file] [log] [blame]
Derick Montaguea2988f42020-01-17 13:46:30 -06001import Vue from "vue";
2import Vuex from "vuex";
3
Yoshie Muranakab8b6f792019-12-03 14:47:32 -08004import GlobalStore from "./modules/GlobalStore";
Derick Montaguee080a1a2019-12-04 16:30:08 -06005import AuthenticationStore from "./modules/Authentication/AuthenticanStore";
6import LocalUserManagementStore from "./modules/AccessControl/LocalUserMangementStore";
Yoshie Muranaka35080ac2020-01-17 15:38:57 -06007
Derick Montaguea2988f42020-01-17 13:46:30 -06008Vue.use(Vuex);
9
10export default new Vuex.Store({
11 state: {},
12 mutations: {},
13 actions: {},
Yoshie Muranaka35080ac2020-01-17 15:38:57 -060014 modules: {
Yoshie Muranakab8b6f792019-12-03 14:47:32 -080015 global: GlobalStore,
Derick Montaguee080a1a2019-12-04 16:30:08 -060016 authentication: AuthenticationStore,
Yoshie Muranaka35080ac2020-01-17 15:38:57 -060017 localUsers: LocalUserManagementStore
18 }
Derick Montaguea2988f42020-01-17 13:46:30 -060019});