aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2018-12-10 17:15:37 +0100
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-02-12 13:35:31 +0100
commit4a537e890d95e8666985ce77df4c6327582332be (patch)
treeb47dcd21e6b70de47ef45c882bbd0f55ce9aa603 /src/stores/FeaturesStore.js
parentignore intellij project files (diff)
downloadferdium-app-4a537e890d95e8666985ce77df4c6327582332be.tar.gz
ferdium-app-4a537e890d95e8666985ce77df4c6327582332be.tar.zst
ferdium-app-4a537e890d95e8666985ce77df4c6327582332be.zip
basic setup for workspaces feature
Diffstat (limited to 'src/stores/FeaturesStore.js')
-rw-r--r--src/stores/FeaturesStore.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index eb2b21af3..05a620f0b 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -7,6 +7,7 @@ import delayApp from '../features/delayApp';
7import spellchecker from '../features/spellchecker'; 7import spellchecker from '../features/spellchecker';
8import serviceProxy from '../features/serviceProxy'; 8import serviceProxy from '../features/serviceProxy';
9import basicAuth from '../features/basicAuth'; 9import basicAuth from '../features/basicAuth';
10import workspaces from '../features/workspaces';
10 11
11import { DEFAULT_FEATURES_CONFIG } from '../config'; 12import { DEFAULT_FEATURES_CONFIG } from '../config';
12 13
@@ -56,5 +57,6 @@ export default class FeaturesStore extends Store {
56 spellchecker(this.stores, this.actions); 57 spellchecker(this.stores, this.actions);
57 serviceProxy(this.stores, this.actions); 58 serviceProxy(this.stores, this.actions);
58 basicAuth(this.stores, this.actions); 59 basicAuth(this.stores, this.actions);
60 workspaces(this.stores, this.actions);
59 } 61 }
60} 62}