mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
24 lines
404 B
TypeScript
24 lines
404 B
TypeScript
|
import request, { Resp } from 'services/request';
|
||
|
|
||
|
type Options = { reCaptchaPublicKey: string };
|
||
|
|
||
|
let options: Resp<Options>;
|
||
|
|
||
|
export default {
|
||
|
async get(): Promise<Resp<Options>> {
|
||
|
if (options) {
|
||
|
return Promise.resolve(options);
|
||
|
}
|
||
|
|
||
|
const resp = await request.get<Options>(
|
||
|
'/api/options',
|
||
|
{},
|
||
|
{ token: null },
|
||
|
);
|
||
|
|
||
|
options = resp;
|
||
|
|
||
|
return resp;
|
||
|
},
|
||
|
};
|