Skip to content
Snippets Groups Projects
Commit a2f2ffb8 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

if a user that is flag as deleted shows up again, remove that flag. Fixes #20090

parent 6911d8f0
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@
namespace OCA\user_ldap\lib;
use OCA\user_ldap\lib\user\OfflineUser;
use OCA\User_LDAP\Mapping\AbstractMapping;
/**
......@@ -696,6 +697,10 @@ class Access extends LDAPUtility implements user\IUserTools {
$ocName = $this->dn2ocname($userRecord['dn'][0], $userRecord[$displayNameAttribute]);
$this->cacheUserExists($ocName);
$user = $this->userManager->get($ocName);
if($user instanceof OfflineUser) {
$user->unmark();
$user = $this->userManager->get($ocName);
}
$user->processAttributes($userRecord);
}
}
......
......@@ -85,6 +85,13 @@ class OfflineUser {
$this->fetchDetails();
}
/**
* remove the Delete-flag from the user.
*/
public function unmark() {
$this->config->setUserValue($this->ocName, 'user_ldap', 'isDeleted', '0');
}
/**
* exports the user details in an assoc array
* @return array
......
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