2018-11-27 10:51:33 +00:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
|
2018-11-30 15:49:14 +00:00
|
|
|
import {authModule} from "@/store/modules/users";
|
2018-11-27 13:14:10 +00:00
|
|
|
import {projectsModule} from "@/store/modules/projects";
|
2018-11-26 15:57:11 +00:00
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
Vue.use(Vuex);
|
|
|
|
|
2018-11-27 13:14:10 +00:00
|
|
|
// Satellite store (vuex)
|
2018-11-05 15:26:18 +00:00
|
|
|
const store = new Vuex.Store({
|
|
|
|
modules: {
|
2018-11-27 13:14:10 +00:00
|
|
|
authModule,
|
|
|
|
projectsModule
|
2018-11-05 15:26:18 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default store;
|