view client/src/store.js @ 1088:9e3ba050a7f7

client: improve file header (minor) * Remove trailing spaces. * Add BER as additional author.
author Bernhard Reiter <bernhard@intevation.de>
date Mon, 29 Oct 2018 17:53:48 +0100
parents 1ff8c072df18
children aa1f5daf6fc9
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 "./application/stores/application";
import user from "./application/stores/user";
import usermanagement from "./usermanagement/store";
import mapstore from "./map/store";
import FairwayProfile from "./fairway/store";
import IdentifyStore from "./identify/store";
import Bottlenecks from "./bottlenecks/store";

Vue.use(Vuex);

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