aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Recipe.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
commit5d6164973e92fa8a3e3c18a0eb2e29494aea4f48 (patch)
tree382e6c672bbc0f7582b3b627b02111dcce902894 /src/models/Recipe.js
parentAdd React 16 didCatch/ErrorBoundary component (diff)
downloadferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.gz
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.zst
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.zip
Fix linting issues
Diffstat (limited to 'src/models/Recipe.js')
-rw-r--r--src/models/Recipe.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/models/Recipe.js b/src/models/Recipe.js
index 43c44514c..b0d60e75e 100644
--- a/src/models/Recipe.js
+++ b/src/models/Recipe.js
@@ -5,21 +5,33 @@ import path from 'path';
5 5
6export default class Recipe { 6export default class Recipe {
7 id = ''; 7 id = '';
8
8 name = ''; 9 name = '';
10
9 description = ''; 11 description = '';
12
10 version = ''; 13 version = '';
14
11 path = ''; 15 path = '';
12 16
13 serviceURL = ''; 17 serviceURL = '';
14 18
15 hasDirectMessages = true; 19 hasDirectMessages = true;
20
16 hasIndirectMessages = false; 21 hasIndirectMessages = false;
22
17 hasNotificationSound = false; 23 hasNotificationSound = false;
24
18 hasTeamId = false; 25 hasTeamId = false;
26
19 hasPredefinedUrl = false; 27 hasPredefinedUrl = false;
28
20 hasCustomUrl = false; 29 hasCustomUrl = false;
30
21 hasHostedOption = false; 31 hasHostedOption = false;
32
22 urlInputPrefix = ''; 33 urlInputPrefix = '';
34
23 urlInputSuffix = ''; 35 urlInputSuffix = '';
24 36
25 message = ''; 37 message = '';