Files
oficial/app/resources/routes/api/inmobiliarias/agentes.php
Juan Pablo Vial 8710c8a111 Agentes
2024-04-02 23:02:52 -03:00

12 lines
365 B
PHP

<?php
use Incoviba\Controller\API\Inmobiliarias\Agentes;
$app->group('/agentes', function($app) {
$app->post('/add[/]', [Agentes::class, 'add']);
$app->post('/register[/]', [Agentes::class, 'register']);
$app->get('[/]', Agentes::class);
});
$app->group('/agente/{agente_id}', function($app) {
$app->post('/edit[/]', [Agentes::class, 'edit']);
});