diff client/src/store.js @ 1142:dc3f0277628a

feat: Importqueue listing (Proof of concept) This is only a prototypical overview of importqueue data from backend. Uses GET to retrieve an overview of imports. Shows in separate tables. Further concept needs to be developed to progress..
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 12 Nov 2018 15:00:04 +0100
parents 8d12056d602a
children
line wrap: on
line diff
--- a/client/src/store.js	Fri Nov 09 10:57:49 2018 +0100
+++ b/client/src/store.js	Mon Nov 12 15:00:04 2018 +0100
@@ -1,14 +1,14 @@
 /*
  * 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 
+ *
+ * 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>
@@ -22,6 +22,7 @@
 import map from "./store/map";
 import fairwayprofile from "./store/fairway";
 import bottlenecks from "./store/bottlenecks";
+import imports from "./store/imports";
 
 Vue.use(Vuex);
 
@@ -29,6 +30,7 @@
   modules: {
     application,
     fairwayprofile,
+    imports,
     bottlenecks,
     map,
     user,