diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-11 16:21:09 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-11 16:25:28 -0400 |
commit | a1c88a3e39695a463ff7d0dda74dbdbb59d86f5c (patch) | |
tree | 39cefd2a127bababa2b548467b09f75b2b9dd616 /lib/group/example.php | |
parent | 4f1b3631ba3356fb3890180b65281b9653a0e714 (diff) | |
download | nextcloud-server-a1c88a3e39695a463ff7d0dda74dbdbb59d86f5c.tar.gz nextcloud-server-a1c88a3e39695a463ff7d0dda74dbdbb59d86f5c.zip |
Add search, limit, offset parameters to usersInGroups()
Diffstat (limited to 'lib/group/example.php')
-rw-r--r-- | lib/group/example.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/group/example.php b/lib/group/example.php index c33b435ca05..76d12629763 100644 --- a/lib/group/example.php +++ b/lib/group/example.php @@ -104,6 +104,6 @@ abstract class OC_Group_Example { * @brief get a list of all users in a group * @returns array with user ids */ - abstract public static function usersInGroup($gid); + abstract public static function usersInGroup($gid, $search = '', $limit = -1, $offset = 0); } |