diff --git a/taskncoffee-app/src/api/tasks.service.js b/taskncoffee-app/src/api/tasks.service.js new file mode 100644 index 0000000..e6e4e9a --- /dev/null +++ b/taskncoffee-app/src/api/tasks.service.js @@ -0,0 +1,22 @@ +import client from './client'; +import { API_ENDPOINTS } from './ApiSources'; + + +/** + * Create a new task + * @param {Object} taskData - Task data + * @param {string} taskData.title - Task title + * @param {string} taskData.description - Task description + * @param {string} taskData.priority - Task priority + * @param {string} taskData.status - Task status + * @param {string} taskData.due_date - Task due date + * @returns {Promise} Created task data + */ +export const createTask = async (taskData) => { + try { + const response = await client.post(API_ENDPOINTS.TASKS.CREATE, taskData); + return response.data; + } catch (error) { + throw error.response?.data || error.message; + } +}; \ No newline at end of file