add OC_GROUP::createGroup();
This commit is contained in:
parent
9947428d79
commit
25d687f35a
|
@ -124,4 +124,13 @@ class OC_GROUP {
|
||||||
public static function getGroups() {
|
public static function getGroups() {
|
||||||
return self::$_backend->getGroups();
|
return self::$_backend->getGroups();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* create a new group
|
||||||
|
*
|
||||||
|
* @param string $name Name of the group
|
||||||
|
*/
|
||||||
|
public static function createGroup($name) {
|
||||||
|
return self::$_backend->createGroup($name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue