From 17e03bde4624d0166a7a84bcc48d65c9bb9356ac Mon Sep 17 00:00:00 2001 From: bitbucket Date: Tue, 30 Apr 2024 09:14:13 +0530 Subject: [PATCH] CHANGE_ calculatePremium route : GWM --- app/Config/Routes.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Config/Routes.php b/app/Config/Routes.php index 744e04a0..34c19b5b 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -269,6 +269,8 @@ $routes->group("employeeRest", ["filter" => "authJWT"], function ($routes) { $routes->get("exportCashDepositData", "EmployeeRestController::exportCashDepositData"); $routes->get("removeEmpAndEmpPolicyData", "EmployeeRestController::removeEmpAndEmpPolicyData"); + + $routes->post("calculatePremium", "EmployeeRestController::calculatePremium"); }); $routes->post("sendEmail", "EmployeeRestController::send_email");