diff client/src/store/index.js @ 2033:431f97fd873b unify_imports

importschedule: extracted to separate store
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 25 Jan 2019 11:09:21 +0100
parents da7ee82ad5d6
children 1686ec185155
line wrap: on
line diff
--- a/client/src/store/index.js	Fri Jan 25 10:15:53 2019 +0100
+++ b/client/src/store/index.js	Fri Jan 25 11:09:21 2019 +0100
@@ -22,6 +22,7 @@
 import fairwayprofile from "./fairway";
 import bottlenecks from "./bottlenecks";
 import { imports } from "./imports";
+import { importschedule } from "./importschedule";
 
 Vue.use(Vuex);
 
@@ -32,6 +33,7 @@
         application: application.init(),
         fairwayprofile: fairwayprofile.init(),
         imports: imports.init(),
+        importschedule: importschedule.init(),
         bottlenecks: bottlenecks.init(),
         map: map.init(),
         user: user.init(),
@@ -43,6 +45,7 @@
     application,
     fairwayprofile,
     imports,
+    importschedule,
     bottlenecks,
     map,
     user,