Routes fix

This commit is contained in:
CHIEFSOFT\ameye
2025-06-13 22:54:03 -04:00
parent f6d12d5272
commit 5758af7483
+3 -3
View File
@@ -8,9 +8,9 @@ $routes->get('/', 'Home::index');
$routes->get('/en/wrench/api/v1/test','Home::test');
$routes->group('/backoffice/svs/bko', static function ($routes) {
$routes->get('/generics','BackOffice::backofficegate');
$routes->post('/generics','BackOffice::backofficegate');
$routes->group('/backoffice/svs/bko/', static function ($routes) {
$routes->get('generics','BackOffice::backofficegate');
$routes->post('generics','BackOffice::backofficegate');
});
$routes->post('/en/wrench/api/v1/promoverify', 'Promo::promoVerify');