mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 18:04:46 +02:00
10 lines
275 B
TypeScript
10 lines
275 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default (): Promise<string> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.get('/api/client/account/two-factor')
|
|
.then(({ data }) => resolve(data.data.image_url_data))
|
|
.catch(reject);
|
|
});
|
|
};
|