Welcome to mirror list, hosted at ThFree Co, Russian Federation.

registration.js « service « js - github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eee2dd44caba6d8baef23013905c6aab19027eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import $ from 'jquery';
import fetch from 'nextcloud_fetch';

export function getState() {
    let url = OC.generateUrl('/apps/twofactor_sms/settings/verification')

    return fetch(url, {
        headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json'
        }
    }).then(function (resp) {
        if (resp.ok) {
            return resp.json();
        }
        throw resp;
    })
}

export function startVerification() {
    let url = OC.generateUrl('/apps/twofactor_sms/settings/verification/start')

    return fetch(url, {
        method: 'POST',
        headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json'
        }
    }).then(function (resp) {
        if (resp.ok) {
            return resp.json();
        }
        throw resp;
    })
}

export function tryVerification(code) {
    let url = OC.generateUrl('/apps/twofactor_sms/settings/verification/finish')

    return fetch(url, {
        method: 'POST',
        body: JSON.stringify({
            verificationCode: code
        }),
        headers: {
            'Accept': 'application/json',
            'Content-Type': 'application/json'
        }
    }).then(function (resp) {
        if (resp.ok) {
            return resp.json();
        }
        throw resp;
    })
}