diff options
author | Joas Schilling <coding@schilljs.com> | 2017-05-10 09:44:28 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-05-10 09:45:11 +0200 |
commit | ca399406146d74f2f46f8b8815f0b3c165c996ab (patch) | |
tree | 2a1c5ffd705698c04f8cef433e64b4416690af18 /core/Application.php | |
parent | a8bb4a18988534323d872b13a9895a2c9557b6c5 (diff) | |
download | nextcloud-server-ca399406146d74f2f46f8b8815f0b3c165c996ab.tar.gz nextcloud-server-ca399406146d74f2f46f8b8815f0b3c165c996ab.zip |
Automatic creation of Identity manager
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Application.php')
-rw-r--r-- | core/Application.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/core/Application.php b/core/Application.php index 5a2bc477fee..5fafb0441f0 100644 --- a/core/Application.php +++ b/core/Application.php @@ -30,7 +30,6 @@ namespace OC\Core; -use OC\Security\IdentityProof\Manager; use OCP\AppFramework\App; use OCP\Util; @@ -49,11 +48,5 @@ class Application extends App { $container->registerService('defaultMailAddress', function () { return Util::getDefaultEmailAddress('lostpassword-noreply'); }); - $container->registerService(Manager::class, function () { - return new Manager( - \OC::$server->getAppDataDir('identityproof'), - \OC::$server->getCrypto() - ); - }); } } |