aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-09-04 17:03:53 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-04 17:03:53 +0200
commitf39cbe7d803245702885b308ab1cee4551aea9a1 (patch)
tree56d2e5dbe6242bb64b03ba5028b8bac39ea0c7ed /src/stores/index.ts
parentUse namespaces when pulling docker base images since this is reqd for podman (diff)
downloadferdium-app-f39cbe7d803245702885b308ab1cee4551aea9a1.tar.gz
ferdium-app-f39cbe7d803245702885b308ab1cee4551aea9a1.tar.zst
ferdium-app-f39cbe7d803245702885b308ab1cee4551aea9a1.zip
chore: remove what's new functionality (#1864)
Diffstat (limited to 'src/stores/index.ts')
-rw-r--r--src/stores/index.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/stores/index.ts b/src/stores/index.ts
index e980f2c5b..4cd4e92ea 100644
--- a/src/stores/index.ts
+++ b/src/stores/index.ts
@@ -10,7 +10,6 @@ import NewsStore from './NewsStore';
10import RequestStore from './RequestStore'; 10import RequestStore from './RequestStore';
11import GlobalErrorStore from './GlobalErrorStore'; 11import GlobalErrorStore from './GlobalErrorStore';
12import { workspaceStore } from '../features/workspaces'; 12import { workspaceStore } from '../features/workspaces';
13import { announcementsStore } from '../features/announcements';
14import { communityRecipesStore } from '../features/communityRecipes'; 13import { communityRecipesStore } from '../features/communityRecipes';
15import { todosStore } from '../features/todos'; 14import { todosStore } from '../features/todos';
16 15
@@ -30,13 +29,12 @@ export default (api, actions, router) => {
30 requests: new RequestStore(stores, api, actions), 29 requests: new RequestStore(stores, api, actions),
31 globalError: new GlobalErrorStore(stores, api, actions), 30 globalError: new GlobalErrorStore(stores, api, actions),
32 workspaces: workspaceStore, 31 workspaces: workspaceStore,
33 announcements: announcementsStore,
34 communityRecipes: communityRecipesStore, 32 communityRecipes: communityRecipesStore,
35 todos: todosStore, 33 todos: todosStore,
36 }); 34 });
37 35
38 // Initialize all stores 36 // Initialize all stores
39 Object.keys(stores).forEach((name) => { 37 Object.keys(stores).forEach(name => {
40 if (stores[name] && stores[name].initialize) { 38 if (stores[name] && stores[name].initialize) {
41 stores[name].initialize(); 39 stores[name].initialize();
42 } 40 }