mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-12 08:19:06 +05:30
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
|
// @flow
|
||
|
import request from 'services/request';
|
||
|
import type { Resp } from 'services/request';
|
||
|
|
||
|
export default {
|
||
|
getSecret(): Promise<Resp<{qr: string, secret: string, uri: string}>> {
|
||
|
return request.get('/api/two-factor-auth');
|
||
|
}
|
||
|
};
|