diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2016-11-21 09:07:50 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-21 11:30:03 +0100 |
commit | 5aed91c3212bc0dbb2e19f6ec8cab4d91cbb34c0 (patch) | |
tree | 826ccd3ac5e2921fc7883cc2c52f4bd6cd5b5aac /settings/Application.php | |
parent | d001dbd2594b8d937d3ccaefa4ea7ab6452a0acc (diff) | |
download | nextcloud-server-5aed91c3212bc0dbb2e19f6ec8cab4d91cbb34c0.tar.gz nextcloud-server-5aed91c3212bc0dbb2e19f6ec8cab4d91cbb34c0.zip |
small fixes
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'settings/Application.php')
-rw-r--r-- | settings/Application.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/settings/Application.php b/settings/Application.php index 2f9b786d438..ca2b2b91f71 100644 --- a/settings/Application.php +++ b/settings/Application.php @@ -96,16 +96,18 @@ class Application extends App { $c->query('Logger') ); }); + $container->registerService('AppSettingsController', function(IContainer $c) { return new AppSettingsController( $c->query('AppName'), $c->query('Request'), $c->query('L10N'), $c->query('Config'), - $c->query('ICacheFactory'), $c->query('INavigationManager'), $c->query('IAppManager'), - $c->query('OcsClient') + $c->query('CategoryFetcher'), + $c->query('AppFetcher'), + \OC::$server->getL10NFactory() ); }); $container->registerService('AuthSettingsController', function(IContainer $c) { |