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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-08-25 09:03:43 +0300
committerJulius Härtl <jus@bitgrid.net>2022-08-25 12:04:53 +0300
commit2e3c92ac00a0051cb9771bbed6e507e46df7f30d (patch)
tree2dfc175e95ed28297b13c76477fd8c461c430742 /appinfo
parentdf441b7f29ab09e0589086c1d6903528249df1ba (diff)
Implement notification backend for mentions
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index f247741e4..9d1726566 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -36,6 +36,7 @@ return [
['name' => 'Session#sync', 'url' => '/session/sync', 'verb' => 'POST'],
['name' => 'Session#push', 'url' => '/session/push', 'verb' => 'POST'],
['name' => 'Session#close', 'url' => '/session/close', 'verb' => 'POST'],
+ ['name' => 'Session#mention', 'url' => '/session/mention', 'verb' => 'PUT'],
['name' => 'PublicSession#create', 'url' => '/public/session/create', 'verb' => 'PUT'],
['name' => 'PublicSession#updateSession', 'url' => '/public/session', 'verb' => 'POST'],