Cache cleaning when subadmin adds user to group
This commit fix an error happening when the subadmin tries to create an user, adding him/her to the group s/he is subadmin of, using a LDAP User/Group plugin. This just forces the cache to be reset after an user is added to a group. Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com>
This commit is contained in:
parent
20b0817e5c
commit
7d6a7ab351
|
@ -1171,6 +1171,7 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface, IGroupLD
|
|||
if ($this->groupPluginManager->implementsActions(GroupInterface::ADD_TO_GROUP)) {
|
||||
if ($ret = $this->groupPluginManager->addToGroup($uid, $gid)) {
|
||||
$this->access->connection->clearCache();
|
||||
unset($this->cachedGroupMembers[$gid]);
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
|
@ -1188,6 +1189,7 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface, IGroupLD
|
|||
if ($this->groupPluginManager->implementsActions(GroupInterface::REMOVE_FROM_GROUP)) {
|
||||
if ($ret = $this->groupPluginManager->removeFromGroup($uid, $gid)) {
|
||||
$this->access->connection->clearCache();
|
||||
unset($this->cachedGroupMembers[$gid]);
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue