13 lines
411 B
PHP
13 lines
411 B
PHP
<?php
|
|
use Incoviba\API\Common\Controller\Proyectos;
|
|
|
|
$app->group('/proyectos', function ($app) {
|
|
$app->post('/add[/]', [Proyectos::class, 'add']);
|
|
$app->get('[/]', Proyectos::class);
|
|
});
|
|
$app->group('/proyecto/{proyecto_id}', function ($app) {
|
|
$app->put('/edit[/]', [Proyectos::class, 'edit']);
|
|
$app->delete('/edit[/]', [Proyectos::class, 'delete']);
|
|
$app->get('[/]', [Proyectos::class, 'show']);
|
|
});
|