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: a6aa2302b82ea7b1650630ab5a6efba5574a72e9 (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
import $ from 'jquery';
import { nc_fetch_json } from 'nextcloud_fetch';

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

    return nc_fetch_json(url).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 nc_fetch_json(url, {
        method: 'POST'
    }).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 nc_fetch_json(url, {
        method: 'POST',
        body: JSON.stringify({
            verificationCode: code
        })
    }).then(function (resp) {
        if (resp.ok) {
            return resp.json();
        }
        throw resp;
    })
}