aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-10-04 16:27:26 +0200
committerLibravatar GitHub <noreply@github.com>2020-10-04 15:27:26 +0100
commitc9c067b286505621fbae3fc212638b45ae1c733a (patch)
treebeb3001b26ec3ffc05528d11fe60033971655a7c /src/stores
parentFine-tune nightly releases scripts (diff)
downloadferdium-app-c9c067b286505621fbae3fc212638b45ae1c733a.tar.gz
ferdium-app-c9c067b286505621fbae3fc212638b45ae1c733a.tar.zst
ferdium-app-c9c067b286505621fbae3fc212638b45ae1c733a.zip
Add setting to enable nightly releases updates (#742)
Co-authored-by: Amine Mouafik <amine@mouafik.fr>
Diffstat (limited to 'src/stores')
-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 8a279bc8a..631d0318e 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -14,6 +14,7 @@ import serviceProxy from '../features/serviceProxy';
14import basicAuth from '../features/basicAuth'; 14import basicAuth from '../features/basicAuth';
15import workspaces from '../features/workspaces'; 15import workspaces from '../features/workspaces';
16import quickSwitch from '../features/quickSwitch'; 16import quickSwitch from '../features/quickSwitch';
17import nightlyBuilds from '../features/nightlyBuilds';
17import publishDebugInfo from '../features/publishDebugInfo'; 18import publishDebugInfo from '../features/publishDebugInfo';
18import shareFranz from '../features/shareFranz'; 19import shareFranz from '../features/shareFranz';
19import announcements from '../features/announcements'; 20import announcements from '../features/announcements';
@@ -85,6 +86,7 @@ export default class FeaturesStore extends Store {
85 basicAuth(this.stores, this.actions); 86 basicAuth(this.stores, this.actions);
86 workspaces(this.stores, this.actions); 87 workspaces(this.stores, this.actions);
87 quickSwitch(this.stores, this.actions); 88 quickSwitch(this.stores, this.actions);
89 nightlyBuilds(this.stores, this.actions);
88 publishDebugInfo(this.stores, this.actions); 90 publishDebugInfo(this.stores, this.actions);
89 shareFranz(this.stores, this.actions); 91 shareFranz(this.stores, this.actions);
90 announcements(this.stores, this.actions); 92 announcements(this.stores, this.actions);