view client/src/store.js @ 1113:595654ad3f66 store-refactoring

renamed mapstore to map (like other stores)
author Markus Kottlaender <markus@intevation.de>
date Mon, 05 Nov 2018 13:36:44 +0100
parents 2c3d32322126
children 8d12056d602a
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 map 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,
    map: map,
    user: user,
    usermanagement: usermanagement
  }
});