blob: b94ecfaf853758f586d44fc4e4454c637d5d8dfc [file] [log] [blame]
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import ApplicationAdapter from './application';
export default class MfaSetupAdapter extends ApplicationAdapter {
currentTokenGenerate(data) {
const url = `/v1/identity/mfa/method/totp/generate`;
return this.ajax(url, 'POST', { data });
}
adminDestroy(data) {
const url = `/v1/identity/mfa/method/totp/admin-destroy`;
return this.ajax(url, 'POST', { data });
}
}