diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-30 20:20:46 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-30 20:20:46 -0400 |
commit | 2f1a990cadc5202dd20c3ec87e886685f6733595 (patch) | |
tree | 4e44165d0d87ad026f45b49a409f1bad87099ac7 /lib/group/backend.php | |
parent | ed71343df8a3d35c2a0fe7d6c91778278f8d7dd1 (diff) | |
download | nextcloud-server-2f1a990cadc5202dd20c3ec87e886685f6733595.tar.gz nextcloud-server-2f1a990cadc5202dd20c3ec87e886685f6733595.zip |
Add search, limit, and offset parameters to getUsers() and getGroups()
Diffstat (limited to 'lib/group/backend.php')
-rw-r--r-- | lib/group/backend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/group/backend.php b/lib/group/backend.php index ebc078f152a..3f2909caa15 100644 --- a/lib/group/backend.php +++ b/lib/group/backend.php @@ -105,7 +105,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { * * Returns a list with all groups */ - public function getGroups(){ + public function getGroups($search = '', $limit = 10, $offset = 0) { return array(); } |