aboutsummaryrefslogtreecommitdiffstats
path: root/lib/group/interface.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/group/interface.php')
-rw-r--r--lib/group/interface.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/group/interface.php b/lib/group/interface.php
index 7cca6061e10..12cc07a5374 100644
--- a/lib/group/interface.php
+++ b/lib/group/interface.php
@@ -58,7 +58,7 @@ interface OC_Group_Interface {
*
* Returns a list with all groups
*/
- public function getGroups();
+ public function getGroups($search = '', $limit = -1, $offset = 0);
/**
* check if a group exists
@@ -71,6 +71,6 @@ interface OC_Group_Interface {
* @brief get a list of all users in a group
* @returns array with user ids
*/
- public function usersInGroup($gid);
+ public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0);
} \ No newline at end of file