2023-09-28 21:05:16 -03:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\Search;
|
|
|
|
|
|
|
|
$app->group('/search', function($app) {
|
|
|
|
$app->get('[/{query}[/{tipo}[/]]]', Search::class);
|
|
|
|
$app->post('[/]', Search::class);
|
2023-11-25 00:55:31 -03:00
|
|
|
})->add($app->getContainer()->get(Incoviba\Middleware\Authentication::class));
|