aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-09-03 16:29:58 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-09-03 16:29:58 +0200
commit128574a300a8516cdd006472a73a020681d5694f (patch)
treec2e91884c2285ef06cd413bf6fabe0263108c702 /src/stores/index.js
parentbump version (diff)
parentupdate todos app url (diff)
downloadferdium-app-128574a300a8516cdd006472a73a020681d5694f.tar.gz
ferdium-app-128574a300a8516cdd006472a73a020681d5694f.tar.zst
ferdium-app-128574a300a8516cdd006472a73a020681d5694f.zip
Merge branch 'feature/todos' into develop
Diffstat (limited to 'src/stores/index.js')
-rw-r--r--src/stores/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/index.js b/src/stores/index.js
index 1912418a2..e9ef523f8 100644
--- a/src/stores/index.js
+++ b/src/stores/index.js
@@ -12,6 +12,7 @@ import RequestStore from './RequestStore';
12import GlobalErrorStore from './GlobalErrorStore'; 12import GlobalErrorStore from './GlobalErrorStore';
13import { workspaceStore } from '../features/workspaces'; 13import { workspaceStore } from '../features/workspaces';
14import { announcementsStore } from '../features/announcements'; 14import { announcementsStore } from '../features/announcements';
15import { todosStore } from '../features/todos';
15 16
16export default (api, actions, router) => { 17export default (api, actions, router) => {
17 const stores = {}; 18 const stores = {};
@@ -31,6 +32,7 @@ export default (api, actions, router) => {
31 globalError: new GlobalErrorStore(stores, api, actions), 32 globalError: new GlobalErrorStore(stores, api, actions),
32 workspaces: workspaceStore, 33 workspaces: workspaceStore,
33 announcements: announcementsStore, 34 announcements: announcementsStore,
35 todos: todosStore,
34 }); 36 });
35 // Initialize all stores 37 // Initialize all stores
36 Object.keys(stores).forEach((name) => { 38 Object.keys(stores).forEach((name) => {