aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mattermost/index.js
blob: fca10e1b79ed31cf66e6432148889774db6d2a20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = Ferdium => class Mattermost extends Ferdium {
  async validateUrl(url) {
    try {
      const resp = await window.fetch(url, {
        method: 'GET',
        headers: {
          'Content-Type': 'application/json',
        },
      });
      return resp.status.toString().startsWith('2');
    } catch (error) {
      console.error(error);
    }

    return false;
  }
};