Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-03-15 17:45:26 +0300
committerJoas Schilling <coding@schilljs.com>2022-03-15 17:45:26 +0300
commit6f2759faf7be58fc4b7aad52912bef8a6723daf2 (patch)
treecdefb51b12f89c08dd6cdbad9022588951ab9d73 /appinfo/routes/routesReactionController.php
parentee48e03ebf9ea74fdf1a5860af5c0041885f6595 (diff)
Add see-links to route files
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo/routes/routesReactionController.php')
-rw-r--r--appinfo/routes/routesReactionController.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/appinfo/routes/routesReactionController.php b/appinfo/routes/routesReactionController.php
index 375478e3f..508de618e 100644
--- a/appinfo/routes/routesReactionController.php
+++ b/appinfo/routes/routesReactionController.php
@@ -25,14 +25,17 @@ declare(strict_types=1);
return [
'ocs' => [
+ /** @see \OCA\Talk\Controller\ReactionController::react() */
['name' => 'Reaction#react', 'url' => '/api/{apiVersion}/reaction/{token}/{messageId}', 'verb' => 'POST', 'requirements' => [
'apiVersion' => 'v1',
'token' => '^[a-z0-9]{4,30}$',
]],
+ /** @see \OCA\Talk\Controller\ReactionController::delete() */
['name' => 'Reaction#delete', 'url' => '/api/{apiVersion}/reaction/{token}/{messageId}', 'verb' => 'DELETE', 'requirements' => [
'apiVersion' => 'v1',
'token' => '^[a-z0-9]{4,30}$',
]],
+ /** @see \OCA\Talk\Controller\ReactionController::getReactions() */
['name' => 'Reaction#getReactions', 'url' => '/api/{apiVersion}/reaction/{token}/{messageId}', 'verb' => 'GET', 'requirements' => [
'apiVersion' => 'v1',
'token' => '^[a-z0-9]{4,30}$',