aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.js
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-08-01 14:12:30 +0200
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-08-01 14:12:30 +0200
commit5818e579f4baf6326250ac8d94d225675b7d8165 (patch)
tree296f14b506838b0f865a02d16788fac2e9aafecc /src/stores/index.js
parentadd updated i18n messages (diff)
downloadferdium-app-5818e579f4baf6326250ac8d94d225675b7d8165.tar.gz
ferdium-app-5818e579f4baf6326250ac8d94d225675b7d8165.tar.zst
ferdium-app-5818e579f4baf6326250ac8d94d225675b7d8165.zip
Fix eslint issues
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) => {