summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/group.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/group.php b/lib/group.php
index 18e34c72773..6ea8681c631 100644
--- a/lib/group.php
+++ b/lib/group.php
@@ -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);
+ }
}