misc_pterodactyl-panel/resources/scripts/api/account/getTwoFactorTokenData.ts

16 lines
403 B
TypeScript
Raw Normal View History

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);
});
};