diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-09-27 11:41:20 +0200 |
---|---|---|
committer | Richard Steinmetz <richard@steinmetz.cloud> | 2023-11-09 10:36:11 +0100 |
commit | ab1a1d688df76fb5c10b8bc431b928a2db1675bd (patch) | |
tree | 0147377303eccd1f6d22569fdf604d726ab8ca45 /apps/dav/appinfo | |
parent | 1acc7c04684a05f024f4c83a8665d4732c2fc5f6 (diff) | |
download | nextcloud-server-ab1a1d688df76fb5c10b8bc431b928a2db1675bd.tar.gz nextcloud-server-ab1a1d688df76fb5c10b8bc431b928a2db1675bd.zip |
feat: Add out-of-office message API
[skipci]
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'apps/dav/appinfo')
-rw-r--r-- | apps/dav/appinfo/routes.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/appinfo/routes.php b/apps/dav/appinfo/routes.php index 3236c0642af..1b2fa0094bf 100644 --- a/apps/dav/appinfo/routes.php +++ b/apps/dav/appinfo/routes.php @@ -35,5 +35,6 @@ return [ ], 'ocs' => [ ['name' => 'direct#getUrl', 'url' => '/api/v1/direct', 'verb' => 'POST'], + ['name' => 'out_of_office#getCurrentOutOfOfficeData', 'url' => '/api/v1/outOfOffice/{userId}', 'verb' => 'GET'], ], ]; |