aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Recipe.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Recipe.js')
-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