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 | |
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')
-rw-r--r-- | lib/public/Contacts/IManager.php | 2 | ||||
-rw-r--r-- | lib/public/IAddressBook.php | 2 |
2 files changed, 4 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 */ diff --git a/lib/public/IAddressBook.php b/lib/public/IAddressBook.php index 0bce0f44dc0..b2c9a103c2c 100644 --- a/lib/public/IAddressBook.php +++ b/lib/public/IAddressBook.php @@ -71,6 +71,8 @@ namespace OCP { * - 'types' boolean (since 15.0.0) If set to true, fields that come with a TYPE property will be an array * example: ['id' => 5, 'FN' => 'Thomas Tanghus', 'EMAIL' => ['type => 'HOME', 'value' => 'g@h.i']] * - '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 * example result: * [ |