Skip to content
Snippets Groups Projects
Commit 25d687f3 authored by Robin Appelman's avatar Robin Appelman
Browse files

add OC_GROUP::createGroup();

parent 9947428d
No related branches found
No related tags found
No related merge requests found
......@@ -124,4 +124,13 @@ class OC_GROUP {
public static function 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);
}
}
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