Plan info api : GWM

This commit is contained in:
Gowtham M 2025-09-18 15:07:23 +05:30
parent d7d3b32c2b
commit 98ae2224ec
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ $routes->post('forgotPassword/changePassword', 'UserController::forgotChangePass
//api's with token
// $routes->group('api', ['filter' => ["jwtAuth","appSignature"] ], function ($routes) {
$routes->group('api', ['filter' => ["jwtAuth","appSignature"] ], function ($routes) {
$routes->get('user/refreshUserToken', 'AuthController::refreshUserToken');
@ -174,7 +174,7 @@ $routes->post('forgotPassword/changePassword', 'UserController::forgotChangePass
$routes->post('guestHouseReport', 'ReportsController::guestHouseReport');
// });
});
// plan review related signed url

View File

@ -1710,7 +1710,7 @@ class PlanController extends ResourceController
default:
$result['policy_action_flow'] = "Unknown flow";
}
$result['Approval_criteria'] = $this->plan_policy_action_status($plan_id,true);
$result['approval_criteria'] = $this->plan_policy_action_status($plan_id,true);
return $this->respond([ 'status' => 200, 'message' => 'success', 'data' => $result ]);