summaryrefslogtreecommitdiffstats
path: root/core/Application.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-05-10 09:44:28 +0200
committerJoas Schilling <coding@schilljs.com>2017-05-10 09:45:11 +0200
commitca399406146d74f2f46f8b8815f0b3c165c996ab (patch)
tree2a1c5ffd705698c04f8cef433e64b4416690af18 /core/Application.php
parenta8bb4a18988534323d872b13a9895a2c9557b6c5 (diff)
downloadnextcloud-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.php7
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()
- );
- });
}
}