Explorar el Código

Merge branch 'master' of ssh://git.mixtech.dev.br:22622/Bar/bartender

Fernando hace 4 meses
padre
commit
2b147eb7be
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      public/index.php

+ 2 - 2
public/index.php

@@ -88,9 +88,9 @@ $app->post('/description/update', $cors, $authJwt, \Controllers\DescriptionUpdat
 $app->get('/menu/get/{id}', $cors, \Controllers\MenuGetController::class);
 
 //Kitchen Route
-$app->post('/kitchen/get', $cors, \Controllers\KitchenGetController::class);
+$app->post('/kitchen/get', $cors, $authJwt, \Controllers\KitchenGetController::class);
 
 //Reports Route
-$app->post('/reports/get', $cors, \Controllers\ReportsGetController::class);
+$app->post('/reports/get', $cors, $authJwt, \Controllers\ReportsGetController::class);
 
 $app->run();