Przeglądaj źródła

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

Fernando 4 miesięcy temu
rodzic
commit
2b147eb7be
1 zmienionych plików z 2 dodań i 2 usunięć
  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();