From 25d687f35a3e86e61935d9a68497a9d5c3b94274 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 17 Apr 2011 00:28:44 +0200 Subject: [PATCH] add OC_GROUP::createGroup(); --- lib/group.php | 9 +++++++++ 1 file changed, 9 insertions(+) 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); + } } -- 2.39.5