diff options
author | Joas Schilling <coding@schilljs.com> | 2019-08-22 03:17:17 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-11-12 17:33:50 +0100 |
commit | e96c9e0e4a402277a9f18470c77503dd914c6de4 (patch) | |
tree | 5d1442e925f976578354224abdfe4ef2b56d16b5 /apps/files_sharing/appinfo | |
parent | dcdbea54e60d13d2508b71ebdcb7992f2ae5ef34 (diff) | |
download | nextcloud-server-e96c9e0e4a402277a9f18470c77503dd914c6de4.tar.gz nextcloud-server-e96c9e0e4a402277a9f18470c77503dd914c6de4.zip |
Add the notifier and the API endpoint for user shares
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r-- | apps/files_sharing/appinfo/app.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index c4f44095dcd..8d4b511c265 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -38,6 +38,7 @@ use OCA\Files_Sharing\AppInfo\Application; $application = \OC::$server->query(Application::class); $application->registerMountProviders(); +$application->register(); $eventDispatcher = \OC::$server->getEventDispatcher(); $eventDispatcher->addListener( diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index ce7ba409199..ab5e829f86b 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -73,6 +73,11 @@ return [ 'url' => '/api/v1/shares/{id}', 'verb' => 'DELETE', ], + [ + 'name' => 'ShareAPI#acceptShare', + 'url' => '/api/v1/shares/pending/{id}', + 'verb' => 'POST', + ], /* * Deleted Shares */ |