From f9a2966292bf8b1b52a256e3484e2e87bae7c40c Mon Sep 17 00:00:00 2001 From: Vaibhav Surve Date: Fri, 16 May 2025 16:33:31 +0530 Subject: [PATCH] Fix API endpoint for creating an employee by updating the URL to the correct path --- lib/helpers/services/api_endpoints.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers/services/api_endpoints.dart b/lib/helpers/services/api_endpoints.dart index 15a45ae..314ada1 100644 --- a/lib/helpers/services/api_endpoints.dart +++ b/lib/helpers/services/api_endpoints.dart @@ -13,7 +13,7 @@ class ApiEndpoints { static const String getAllEmployeesByProject = "/Project/employees/get"; static const String getAllEmployees = "/employee/list"; static const String getRoles = "/roles/jobrole"; - static const String createEmployee = "/employee/manage-mobile"; + static const String createEmployee = "/employee/manage"; // Daily Task Screen API Endpoints static const String getDailyTask = "/task/list";