view client/src/store.js @ 1112:2c3d32322126 store-refactoring

moved identifystore properties to mapstore
author Markus Kottlaender <markus@intevation.de>
date Mon, 05 Nov 2018 13:32:10 +0100
parents aa1f5daf6fc9
children 595654ad3f66
line wrap: on
line source

/*
 * This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 * 
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 * 
 * Copyright (C) 2018 by via donau 
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 * 
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */

import Vue from "vue";
import Vuex from "vuex";
import Application from "./store/application";
import user from "./store/user";
import usermanagement from "./store/usermanagement";
import mapstore from "./store/map";
import FairwayProfile from "./store/fairway";
import Bottlenecks from "./store/bottlenecks";

Vue.use(Vuex);

export default new Vuex.Store({
  modules: {
    application: Application,
    fairwayprofile: FairwayProfile,
    bottlenecks: Bottlenecks,
    mapstore: mapstore,
    user: user,
    usermanagement: usermanagement
  }
});