questable-web-ui/src/models/player.js

7 lines
189 B
JavaScript

export default (config, axios) => {return {
auth: (token) => {
return axios.get(`${config.apiUrl}/auth?token=${encodeURIComponent(token)}`)
.then((res) => res.data.success);
},
};};