From edbf0e856a8dd58ceff5054d6d6fbb2fd62000ce Mon Sep 17 00:00:00 2001 From: Gowtham M Date: Thu, 8 Jan 2026 17:26:38 +0530 Subject: [PATCH] GWM : role based api restiction --- app/Config/Routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/Routes.php b/app/Config/Routes.php index 3d59708..382f5b8 100755 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -28,7 +28,7 @@ $routes->group('api', ['filter' => 'appSignature'], function ($routes) { //api's with token - $routes->group('api', ['filter' => ["jwtAuth:1,2,3,agent","appSignature"] ], function ($routes) { + $routes->group('api', ['filter' => ["jwtAuth:1,2,3,4,agent","appSignature"] ], function ($routes) { //logout $routes->get('auth/logout', 'StaffAuthController::logout');