diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-13 11:06:03 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-26 11:54:25 +0200 |
commit | 5c4fbf519133cc0e017581a29151911f685a64b0 (patch) | |
tree | 453facc83e2d3e9a2ae18eaa0d340547c36d5d3e /apps/files_sharing/appinfo/routes.php | |
parent | a0ab7a257858b305434255df2f33ef4b323ac81d (diff) | |
download | nextcloud-server-5c4fbf519133cc0e017581a29151911f685a64b0.tar.gz nextcloud-server-5c4fbf519133cc0e017581a29151911f685a64b0.zip |
Inject the logger as well
Diffstat (limited to 'apps/files_sharing/appinfo/routes.php')
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index 45ea85ff724..2000eab651f 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -107,7 +107,8 @@ $sharees = new \OCA\Files_Sharing\API\Sharees(\OC::$server->getGroupManager(), \OC::$server->getContactsManager(), \OC::$server->getConfig(), \OC::$server->getUserSession(), - \OC::$server->getURLGenerator()); + \OC::$server->getURLGenerator(), + \OC::$server->getLogger()); API::register('get', '/apps/files_sharing/api/v1/sharees', |