join_admin/src/api/user.js
Lukas Bachschwell 0e91cb0ac8
All checks were successful
continuous-integration/drone/push Build is passing
add Jo image, add coins with update and add incentives
2020-01-03 19:52:51 +01:00

33 lines
562 B
JavaScript

import request from '@/utils/request'
export function login(data) {
return request({
url: '/user/login',
method: 'post',
data
})
}
export function getInfo(token) {
return request({
url: '/user/info',
method: 'get',
params: { token }
})
}
export function getCoins(token) {
return request({
url: 'https://joinbot.tk/kvs/coins' + token,
method: 'get',
headers: { 'x-api-key': 'PMl`&xWpZ1vE)M]G;{8qIXx4k!ce|n' }
})
}
export function logout() {
return request({
url: '/user/logout',
method: 'post'
})
}