aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-02-25 16:34:18 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-02-25 16:34:18 +0100
commit2d4ee04e874e4420aa940c148c77c977188b9500 (patch)
treea2435b5718f67a6588e5bbb5fd8e82c10fb5c9b4 /src/stores/FeaturesStore.js
parentremove code (diff)
downloadferdium-app-2d4ee04e874e4420aa940c148c77c977188b9500.tar.gz
ferdium-app-2d4ee04e874e4420aa940c148c77c977188b9500.tar.zst
ferdium-app-2d4ee04e874e4420aa940c148c77c977188b9500.zip
Add dialog to share franz on social media
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 0adee6adf..d2842083c 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 shareFranz from '../features/shareFranz';
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 shareFranz(this.stores, this.actions);
59 } 61 }
60} 62}