group LDAP: implement groupExists function, needed for Sharing
This commit is contained in:
parent
320fde9eec
commit
ed54de1bbf
|
@ -103,6 +103,15 @@ class OC_GROUP_LDAP extends OC_Group_Backend {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* check if a group exists
|
||||
* @param string $gid
|
||||
* @return bool
|
||||
*/
|
||||
public function groupExists($gid){
|
||||
return in_array($gid, $this->getGroups());
|
||||
}
|
||||
|
||||
private function retrieveList($filter, $attr) {
|
||||
$list = OC_LDAP::search($filter, $attr);
|
||||
|
||||
|
|
Loading…
Reference in New Issue