view client/src/store.js @ 1239:d842d9d10872

Sounding result import: Added the feature to override bottleneck, EPSG, depth reference and date in meta.json by POST arguments.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 20 Nov 2018 17:04:06 +0100
parents dc3f0277628a
children
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";
import imports from "./store/imports";

Vue.use(Vuex);

export default new Vuex.Store({
  modules: {
    application,
    fairwayprofile,
    imports,
    bottlenecks,
    map,
    user,
    usermanagement
  }
});