7 lines
179 B
JavaScript
7 lines
179 B
JavaScript
const getCurrentAccount = async ($) => {
|
|
const response = await $.http.post('/2/users/get_current_account', null);
|
|
return response.data;
|
|
};
|
|
|
|
export default getCurrentAccount;
|