aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/SearchController.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Controller/SearchController.php')
-rw-r--r--core/Controller/SearchController.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/Controller/SearchController.php b/core/Controller/SearchController.php
index 1ca8dd5dae4..166e2bad53b 100644
--- a/core/Controller/SearchController.php
+++ b/core/Controller/SearchController.php
@@ -10,6 +10,7 @@ namespace OC\Core\Controller;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\Attribute\FrontpageRoute;
+use OCP\AppFramework\Http\Attribute\NoAdminRequired;
use OCP\AppFramework\Http\JSONResponse;
use OCP\IRequest;
use OCP\ISearch;
@@ -26,9 +27,7 @@ class SearchController extends Controller {
parent::__construct($appName, $request);
}
- /**
- * @NoAdminRequired
- */
+ #[NoAdminRequired]
#[FrontpageRoute(verb: 'GET', url: '/core/search')]
public function search(string $query, array $inApps = [], int $page = 1, int $size = 30): JSONResponse {
$results = $this->searcher->searchPaged($query, $inApps, $page, $size);