blob: fb0b19ed716433f01eba18ab6c753708d5801712 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
<?php
/**
* Routes for searching any kind of data we have
*/
$app->group('/api/search', function () {
$this->get('/user/{search_term}', 'UserFrosting\Sprinkle\Admin\Controller\SearchController:ByUsername');
})->add('authGuard');
|