bda1ff50ab
Co-authored-by: Dane Everitt <dane@daneeveritt.com>
15 lines
403 B
TypeScript
15 lines
403 B
TypeScript
import http from '@/api/http';
|
|
|
|
export interface TwoFactorTokenData {
|
|
// eslint-disable-next-line camelcase
|
|
image_url_data: string;
|
|
secret: string;
|
|
}
|
|
|
|
export default (): Promise<TwoFactorTokenData> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.get('/api/client/account/two-factor')
|
|
.then(({ data }) => resolve(data.data))
|
|
.catch(reject);
|
|
});
|
|
};
|