aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/rocketchat/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'uncompressed/rocketchat/index.js')
-rw-r--r--uncompressed/rocketchat/index.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/uncompressed/rocketchat/index.js b/uncompressed/rocketchat/index.js
deleted file mode 100644
index 54450ce..0000000
--- a/uncompressed/rocketchat/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
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