aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-06-17 16:52:46 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-06-17 16:52:46 +0200
commit2887eee3935e75640fc45111a904e78496dab62e (patch)
tree5ecd66727b8056f62771e20bb42fca9cfde1745c /src/stores/ServicesStore.js
parentMerge branch 'feature/3rd-party-limit' into feature/new-pricing (diff)
downloadferdium-app-2887eee3935e75640fc45111a904e78496dab62e.tar.gz
ferdium-app-2887eee3935e75640fc45111a904e78496dab62e.tar.zst
ferdium-app-2887eee3935e75640fc45111a904e78496dab62e.zip
Rename feature flags
Diffstat (limited to 'src/stores/ServicesStore.js')
-rw-r--r--src/stores/ServicesStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 4cffea110..513295b5e 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -701,10 +701,10 @@ export default class ServicesStore extends Store {
701 } 701 }
702 702
703 if (service.isUsingCustomUrl) { 703 if (service.isUsingCustomUrl) {
704 service.isServiceAccessRestricted = features.isCustomUrlPremiumFeature; 704 service.isServiceAccessRestricted = features.isCustomUrlIncludedInCurrentPlan;
705 service.restrictionType = RESTRICTION_TYPES.CUSTOM_URL; 705 service.restrictionType = RESTRICTION_TYPES.CUSTOM_URL;
706 706
707 if (features.isCustomUrlPremiumFeature) { 707 if (features.isCustomUrlIncludedInCurrentPlan) {
708 debug('Restricting access to server due to custom url'); 708 debug('Restricting access to server due to custom url');
709 } 709 }
710 } 710 }