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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2021-05-28 19:05:22 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2021-05-28 23:45:52 +0300
commit6c834c1540d8c02d384121b3c1e653ba180ea590 (patch)
treec45677185f146463f644ac77a5a20434a822655f /appinfo
parentceddb01ec64271765cd882022438a1fa1efac866 (diff)
Add custom user tags
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 7a1d14649..bf642752e 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -100,6 +100,16 @@ return [
'verb' => 'GET'
],
[
+ 'name' => 'tags#create',
+ 'url' => '/api/tags',
+ 'verb' => 'POST'
+ ],
+ [
+ 'name' => 'tags#update',
+ 'url' => '/api/tags/{id}',
+ 'verb' => 'PUT'
+ ],
+ [
'name' => 'aliases#updateSignature',
'url' => '/api/accounts/{accountId}/aliases/{id}/signature',
'verb' => 'PUT'