14 lines
384 B
JavaScript
14 lines
384 B
JavaScript
import ApplicationAdapter from './application';
|
|
|
|
export default class MfaSetupAdapter extends ApplicationAdapter {
|
|
adminGenerate(data) {
|
|
let url = `/v1/identity/mfa/method/totp/admin-generate`;
|
|
return this.ajax(url, 'POST', { data });
|
|
}
|
|
|
|
adminDestroy(data) {
|
|
let url = `/v1/identity/mfa/method/totp/admin-destroy`;
|
|
return this.ajax(url, 'POST', { data });
|
|
}
|
|
}
|