mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 01:11:58 +03:00
24
client/src/api/task-lists.js
Normal file
24
client/src/api/task-lists.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*!
|
||||
* Copyright (c) 2024 PLANKA Software GmbH
|
||||
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||||
*/
|
||||
|
||||
import socket from './socket';
|
||||
|
||||
/* Actions */
|
||||
|
||||
const createTaskList = (cardId, data, headers) =>
|
||||
socket.post(`/cards/${cardId}/task-lists`, data, headers);
|
||||
|
||||
const getTaskList = (id, headers) => socket.get(`/task-lists/${id}`, undefined, headers);
|
||||
|
||||
const updateTaskList = (id, data, headers) => socket.patch(`/task-lists/${id}`, data, headers);
|
||||
|
||||
const deleteTaskList = (id, headers) => socket.delete(`/task-lists/${id}`, undefined, headers);
|
||||
|
||||
export default {
|
||||
createTaskList,
|
||||
getTaskList,
|
||||
updateTaskList,
|
||||
deleteTaskList,
|
||||
};
|
||||
Reference in New Issue
Block a user