2023-11-29 20:09:08 -03:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\API\Ventas\PropiedadesUnidades;
|
|
|
|
|
2023-12-01 15:00:25 -03:00
|
|
|
$app->group('/unidades', function($app) {
|
|
|
|
$app->post('/add[/]', [PropiedadesUnidades::class, 'add']);
|
|
|
|
});
|
2023-11-29 20:09:08 -03:00
|
|
|
$app->group('/unidad/{pu_id}', function($app) {
|
|
|
|
$app->post('/edit[/]', [PropiedadesUnidades::class, 'edit']);
|
2023-12-01 15:00:25 -03:00
|
|
|
$app->delete('[/]', [PropiedadesUnidades::class, 'remove']);
|
2023-11-29 20:09:08 -03:00
|
|
|
});
|