diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-03-15 17:29:32 +0100 |
---|---|---|
committer | jld3103 <jld3103yt@gmail.com> | 2023-07-13 07:24:15 +0200 |
commit | 1be836273ddba6e0ddb3509a1d898535df9fd169 (patch) | |
tree | 5aa57fed3c2173484ffcd082f61aaef5015fc3f3 /core/Controller/RecommendedAppsController.php | |
parent | 706c141fffce928d344fe2f039da549fad065393 (diff) | |
download | nextcloud-server-1be836273ddba6e0ddb3509a1d898535df9fd169.tar.gz nextcloud-server-1be836273ddba6e0ddb3509a1d898535df9fd169.zip |
core: Add OpenAPI spec
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'core/Controller/RecommendedAppsController.php')
-rw-r--r-- | core/Controller/RecommendedAppsController.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/Controller/RecommendedAppsController.php b/core/Controller/RecommendedAppsController.php index 5765b946613..5d2c2ba67ce 100644 --- a/core/Controller/RecommendedAppsController.php +++ b/core/Controller/RecommendedAppsController.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * * @author Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Kate Döen <kate.doeen@nextcloud.com> * * @license GNU AGPL version 3 or any later version * @@ -26,12 +27,14 @@ declare(strict_types=1); namespace OC\Core\Controller; use OCP\AppFramework\Controller; +use OCP\AppFramework\Http\Attribute\IgnoreOpenAPI; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\StandaloneTemplateResponse; use OCP\IInitialStateService; use OCP\IRequest; use OCP\IURLGenerator; +#[IgnoreOpenAPI] class RecommendedAppsController extends Controller { public function __construct( IRequest $request, |