|
|
@@ -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();
|