view client/src/store.js @ 162:9908260d1e6a

Refactor: Login expiry refactored to lib test: First unit test for session Cleaned up Code regarding expired sessions. First unit test established for session mostly for educational purposes.
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 05 Jul 2018 18:01:39 +0200
parents 0fd572582ab8
children aee175e3f82c
line wrap: on
line source

import Vue from "vue";
import Vuex from "vuex";
import Application from "./stores/application";
import user from "./stores/user";

Vue.use(Vuex);

export default new Vuex.Store({
  modules: {
    application: Application,
    user: user
  }
});