From c57c3c15734c153d541247cc5fca198cb0e4f7b6 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Thu, 25 Jul 2024 13:24:59 +0200 Subject: refactor(core): Replace security annotations with respective attributes Signed-off-by: provokateurin --- core/Controller/SearchController.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'core/Controller/SearchController.php') 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); -- cgit v1.2.3