diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-01-10 16:06:44 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-04-23 19:08:16 +0200 |
commit | 6709833dc7248fe448b6b809584d9a2e9546af7b (patch) | |
tree | 10743c9d4fb37d7050e760c4f6a4e502353bed40 /lib/public/Contacts | |
parent | 3c2dd082640d2429c81639156291cb5978f60eec (diff) | |
download | nextcloud-server-6709833dc7248fe448b6b809584d9a2e9546af7b.tar.gz nextcloud-server-6709833dc7248fe448b6b809584d9a2e9546af7b.zip |
Use paginated search for contacts
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/public/Contacts')
-rw-r--r-- | lib/public/Contacts/IManager.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/Contacts/IManager.php b/lib/public/Contacts/IManager.php index dcb4c7ddbb3..e0551bcd9dd 100644 --- a/lib/public/Contacts/IManager.php +++ b/lib/public/Contacts/IManager.php @@ -96,6 +96,8 @@ interface IManager { * @param array $searchProperties defines the properties within the query pattern should match * @param array $options = array() to define the search behavior * - 'escape_like_param' - If set to false wildcards _ and % are not escaped + * - 'limit' - Set a numeric limit for the search results + * - 'offset' - Set the offset for the limited search results * @return array an array of contacts which are arrays of key-value-pairs * @since 6.0.0 */ |