Files
oficial/app/resources/routes/api/ventas/comentarios.php
2024-07-04 18:09:25 -04:00

9 lines
294 B
PHP

<?php
use Incoviba\Controller\API\Ventas\Comentarios;
$app->group('/comentario/{comentario_id}', function($app) {
$app->post('/edit[/]', [Comentarios::class, 'edit']);
$app->delete('/remove[/]', [Comentarios::class, 'remove']);
//$app->get('[/]', [Comentarios::class, 'get']);
});