view client/src/store/index.js @ 1363:d0c4d17ee7ab

add missing authors * add missing authors to license headers after checking in /client/src/
author Fadi Abbud <fadi.abbud@intevation.de>
date Mon, 26 Nov 2018 12:18:55 +0100
parents ca33ad696594
children da7ee82ad5d6
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";
import user from "./user";
import usermanagement from "./usermanagement";
import map from "./map";
import fairwayprofile from "./fairway";
import bottlenecks from "./bottlenecks";
import imports from "./imports";

Vue.use(Vuex);

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