aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-07-11 05:22:57 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-07-11 05:22:57 +0530
commit937752318a5127a120867c756856a35812de8dfb (patch)
treeb32728e911e68c3d2e076146e893326773d66d9d /src
parentFixing Dockerfile (diff)
downloadferdium-app-937752318a5127a120867c756856a35812de8dfb.tar.gz
ferdium-app-937752318a5127a120867c756856a35812de8dfb.tar.zst
ferdium-app-937752318a5127a120867c756856a35812de8dfb.zip
Removed unused property: 'hasPredefinedUrl'.
Diffstat (limited to 'src')
-rw-r--r--src/models/Recipe.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/models/Recipe.js b/src/models/Recipe.js
index a20eeb087..4db056f26 100644
--- a/src/models/Recipe.js
+++ b/src/models/Recipe.js
@@ -24,8 +24,6 @@ export default class Recipe {
24 24
25 hasTeamId = false; 25 hasTeamId = false;
26 26
27 hasPredefinedUrl = false;
28
29 hasCustomUrl = false; 27 hasCustomUrl = false;
30 28
31 hasHostedOption = false; 29 hasHostedOption = false;
@@ -73,7 +71,6 @@ export default class Recipe {
73 this.hasIndirectMessages = data.config.hasIndirectMessages || this.hasIndirectMessages; 71 this.hasIndirectMessages = data.config.hasIndirectMessages || this.hasIndirectMessages;
74 this.hasNotificationSound = data.config.hasNotificationSound || this.hasNotificationSound; 72 this.hasNotificationSound = data.config.hasNotificationSound || this.hasNotificationSound;
75 this.hasTeamId = data.config.hasTeamId || this.hasTeamId; 73 this.hasTeamId = data.config.hasTeamId || this.hasTeamId;
76 this.hasPredefinedUrl = data.config.hasPredefinedUrl || this.hasPredefinedUrl;
77 this.hasCustomUrl = data.config.hasCustomUrl || this.hasCustomUrl; 74 this.hasCustomUrl = data.config.hasCustomUrl || this.hasCustomUrl;
78 this.hasHostedOption = data.config.hasHostedOption || this.hasHostedOption; 75 this.hasHostedOption = data.config.hasHostedOption || this.hasHostedOption;
79 76