From 2d6a62cceea09f212ea1db79263ebd5f102af17c Mon Sep 17 00:00:00 2001 From: jld3103 Date: Mon, 10 Jul 2023 11:04:34 +0200 Subject: Add IgnoreOpenAPI attribute Signed-off-by: jld3103 --- .../AppFramework/Http/Attribute/IgnoreOpenAPI.php | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php (limited to 'lib/public/AppFramework/Http') diff --git a/lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php b/lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php new file mode 100644 index 00000000000..31ccd014321 --- /dev/null +++ b/lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php @@ -0,0 +1,37 @@ + + * + * @author Kate Döen + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +namespace OCP\AppFramework\Http\Attribute; + +use Attribute; + +/** + * Attribute for controller methods that should be ignored when generating OpenAPI documentation + * + * @since 28.0.0 + */ +#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)] +class IgnoreOpenAPI { +} -- cgit v1.2.3