Skip to content
Snippets Groups Projects
Commit b9e4e617 authored by Björn Schießle's avatar Björn Schießle Committed by Thomas Müller
Browse files

userRecovery() was replaced by setRecoveryForUser()

parent 69e95531
No related branches found
No related tags found
No related merge requests found
......@@ -29,11 +29,6 @@ namespace OCA\Encryption\AppInfo;
'url' => '/ajax/adminRecovery',
'verb' => 'POST'
],
[
'name' => 'Recovery#userRecovery',
'url' => '/ajax/userRecovery',
'verb' => 'POST'
],
[
'name' => 'Recovery#changeRecoveryPassword',
'url' => '/ajax/changeRecoveryPassword',
......
......@@ -130,18 +130,6 @@ class RecoveryController extends Controller {
}
}
public function userRecovery($userEnableRecovery) {
if (isset($userEnableRecovery) && ($userEnableRecovery === '0' || $userEnableRecovery === '1')) {
$userId = $this->user->getUID();
if ($userEnableRecovery === '1') {
// Todo xxx figure out if we need keyid's here or what.
return $this->recovery->addRecoveryKeys();
}
// Todo xxx see :98
return $this->recovery->removeRecoveryKeys();
}
}
/**
* @NoAdminRequired
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment