6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
import axios from './base';
|
|
|
|
export const refreshCaptcha = ({ captchaId }) => {
|
|
return axios.post('/user/captcha', { captchaId });
|
|
};
|