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