diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-01-26 10:20:01 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-26 10:20:01 +0100 |
commit | d6939d67daa0b412f1179136151ac84ca0712112 (patch) | |
tree | 089631b619cff909393c0d2db833b780d519bdbc /apps | |
parent | 810d5a6a675bed9a6a04bf7995a88021642c36e5 (diff) | |
download | nextcloud-server-d6939d67daa0b412f1179136151ac84ca0712112.tar.gz nextcloud-server-d6939d67daa0b412f1179136151ac84ca0712112.zip |
Remove duplicated definition of APIController
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/appinfo/application.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/files/appinfo/application.php b/apps/files/appinfo/application.php index 13ff60daf89..5203946f827 100644 --- a/apps/files/appinfo/application.php +++ b/apps/files/appinfo/application.php @@ -19,7 +19,6 @@ class Application extends App { parent::__construct('files', $urlParams); $container = $this->getContainer(); - /** * Controllers */ @@ -52,16 +51,5 @@ class Application extends App { $homeFolder ); }); - - /** - * Controllers - */ - $container->registerService('APIController', function (IContainer $c) { - return new ApiController( - $c->query('AppName'), - $c->query('Request'), - $c->query('TagService') - ); - }); } } |