aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/github_entreprise/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/github_entreprise/index.js')
-rw-r--r--recipes/github_entreprise/index.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/recipes/github_entreprise/index.js b/recipes/github_entreprise/index.js
deleted file mode 100644
index f45d240..0000000
--- a/recipes/github_entreprise/index.js
+++ /dev/null
@@ -1,19 +0,0 @@
1module.exports = Ferdi => class GitHubEnterprise extends Ferdi {
2 async validateUrl(url) {
3 try {
4 const resp = await window.fetch(`${url}/api/v3`, {
5 method: 'GET',
6 headers: {
7 'Content-Type': 'application/json',
8 Accept: 'application/vnd.github.v3+json',
9 },
10 });
11 // doc: https://developer.github.com/enterprise/2.17/v3/#current-version
12 return resp.status.toString().startsWith('2');
13 } catch (err) {
14 console.error(err);
15 }
16
17 return false;
18 }
19};