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 00:37:43 +0300
committerVitor Mattos <vitor@php.rio>2022-02-15 18:45:41 +0300
commit15662ed4facadb4d150cd4bada42be56c0a0da3d (patch)
tree1dd93c519de1c6439c1fb5a38bb203ed2824dbe4 /appinfo
parent3b30c900cbdc399cae93c2b26ad9b466179d1f82 (diff)
Api changes to react to a message: reactions delete
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 bed62fb15..3dc0744df 100644
--- a/appinfo/routes/routesReactionController.php
+++ b/appinfo/routes/routesReactionController.php
@@ -29,5 +29,9 @@ return [
'apiVersion' => 'v1',
'token' => '^[a-z0-9]{4,30}$',
]],
+ ['name' => 'Reaction#delete', 'url' => '/api/{apiVersion}/reaction/{token}/{messageId}', 'verb' => 'DELETE', 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ]],
],
];