Files
oficial/app/resources/routes/api/ventas/propiedades/unidades.php
2023-12-01 15:00:25 -03:00

11 lines
356 B
PHP

<?php
use Incoviba\Controller\API\Ventas\PropiedadesUnidades;
$app->group('/unidades', function($app) {
$app->post('/add[/]', [PropiedadesUnidades::class, 'add']);
});
$app->group('/unidad/{pu_id}', function($app) {
$app->post('/edit[/]', [PropiedadesUnidades::class, 'edit']);
$app->delete('[/]', [PropiedadesUnidades::class, 'remove']);
});