aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/rocketchat/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/rocketchat/index.js')
-rw-r--r--recipes/rocketchat/index.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes/rocketchat/index.js b/recipes/rocketchat/index.js
new file mode 100644
index 0000000..54450ce
--- /dev/null
+++ b/recipes/rocketchat/index.js
@@ -0,0 +1,21 @@
1"use strict";
2
3module.exports = Franz => class RocketChat extends Franz {
4 async validateUrl(url) {
5 try {
6 const resp = await window.fetch(url, {
7 method: 'GET',
8 headers: {
9 'Content-Type': 'application/json'
10 }
11 });
12 const status = resp.status.toString();
13 return status.startsWith('2') || status.startsWith('3');
14 } catch (err) {
15 console.error(err);
16 }
17
18 return false;
19 }
20
21}; \ No newline at end of file