aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/mattermost/index.js
blob: 8f814fa335eb697abe366cb1271a5a3da6e98b57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"use strict";

module.exports = Franz => class Mattermost extends Franz {
  async validateUrl(url) {
    try {
      const resp = await window.fetch(url, {
        method: 'GET',
        headers: {
          'Content-Type': 'application/json'
        }
      });
      return resp.status.toString().startsWith('2');
    } catch (err) {
      console.error(err);
    }

    return false;
  }

};