diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-08-11 11:37:56 +0200 |
---|---|---|
committer | jld3103 <jld3103yt@gmail.com> | 2023-08-11 11:37:56 +0200 |
commit | 902e0396e046d08145da5455247ad1ec9169c369 (patch) | |
tree | 04d59648c6d740ee43c8b0f66facfc77fb280422 /core/Controller | |
parent | f0db3d0de1785c17097f6e8ffd73e0f9221528d9 (diff) | |
download | nextcloud-server-902e0396e046d08145da5455247ad1ec9169c369.tar.gz nextcloud-server-902e0396e046d08145da5455247ad1ec9169c369.zip |
Fix text processing OpenAPI
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'core/Controller')
-rw-r--r-- | core/Controller/TextProcessingApiController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Controller/TextProcessingApiController.php b/core/Controller/TextProcessingApiController.php index 0035750b4b0..89ef0d105fe 100644 --- a/core/Controller/TextProcessingApiController.php +++ b/core/Controller/TextProcessingApiController.php @@ -190,8 +190,8 @@ class TextProcessingApiController extends \OCP\AppFramework\OCSController { * This endpoint returns a list of tasks of a user that are related * with a specific appId and optionally with an identifier * - * @param string $appId - * @param string|null $identifier + * @param string $appId ID of the app + * @param string|null $identifier An arbitrary identifier for the task * @return DataResponse<Http::STATUS_OK, array{tasks: CoreTextProcessingTask[]}, array{}>|DataResponse<Http::STATUS_INTERNAL_SERVER_ERROR, array{message: string}, array{}> * * 200: Task list returned |