diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-08-15 17:39:00 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-08-15 17:39:00 +0200 |
commit | 63af75586b53391670c2ccfb48d19f4b6950cab0 (patch) | |
tree | fa5a16539431673c9f51e54bb313ed69a30c60b6 /lib/group/interface.php | |
parent | 4954e46bb2ba36c749b638111dc90500e12cedf7 (diff) | |
parent | dd3208fe6fadff3ad831df2fa5220e2184738b21 (diff) | |
download | nextcloud-server-63af75586b53391670c2ccfb48d19f4b6950cab0.tar.gz nextcloud-server-63af75586b53391670c2ccfb48d19f4b6950cab0.zip |
Merge branch 'master' into routing
Diffstat (limited to 'lib/group/interface.php')
-rw-r--r-- | lib/group/interface.php | 4 |
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 |