mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
32 lines
719 B
JavaScript
32 lines
719 B
JavaScript
|
import http from './http';
|
||
|
import socket from './socket';
|
||
|
|
||
|
/* Actions */
|
||
|
|
||
|
const getUsers = (headers) => socket.get('/users', undefined, headers);
|
||
|
|
||
|
const createUser = (data, headers) => socket.post('/users', data, headers);
|
||
|
|
||
|
const getCurrentUser = (headers) => socket.get('/users/me', undefined, headers);
|
||
|
|
||
|
const updateUser = (id, data, headers) => socket.patch(`/users/${id}`, data, headers);
|
||
|
|
||
|
const uploadUserAvatar = (id, file, headers) => http.post(
|
||
|
`/users/${id}/upload-avatar`,
|
||
|
{
|
||
|
file,
|
||
|
},
|
||
|
headers,
|
||
|
);
|
||
|
|
||
|
const deleteUser = (id, headers) => socket.delete(`/users/${id}`, undefined, headers);
|
||
|
|
||
|
export default {
|
||
|
getUsers,
|
||
|
createUser,
|
||
|
getCurrentUser,
|
||
|
updateUser,
|
||
|
uploadUserAvatar,
|
||
|
deleteUser,
|
||
|
};
|