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:
authorVitor Mattos <vitor@php.rio>2021-12-24 17:24:02 +0300
committerVitor Mattos <vitor@php.rio>2022-02-15 18:45:41 +0300
commit1a302f52a6e3b7a95ab06cb3a7f824204e64ae48 (patch)
tree2e0c0987552dbe15cfe3d8790f4f4b77c49cd814 /appinfo
parent15662ed4facadb4d150cd4bada42be56c0a0da3d (diff)
Api changes to react to a message: reactions retrieve
Signed-off-by: Vitor Mattos <vitor@php.rio>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes/routesReactionController.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/appinfo/routes/routesReactionController.php b/appinfo/routes/routesReactionController.php
index 3dc0744df..375478e3f 100644
--- a/appinfo/routes/routesReactionController.php
+++ b/appinfo/routes/routesReactionController.php
@@ -33,5 +33,9 @@ return [
'apiVersion' => 'v1',
'token' => '^[a-z0-9]{4,30}$',
]],
+ ['name' => 'Reaction#getReactions', 'url' => '/api/{apiVersion}/reaction/{token}/{messageId}', 'verb' => 'GET', 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ]],
],
];