Merge pull request #24697 from nextcloud/backport/24589/stable20
[stable20] Add tel, note, org and title search
This commit is contained in:
commit
e6e6725024
|
@ -61,7 +61,11 @@ class ContactsSearchProvider implements IProvider {
|
|||
'FN',
|
||||
'NICKNAME',
|
||||
'EMAIL',
|
||||
'TEL',
|
||||
'ADR',
|
||||
'TITLE',
|
||||
'ORG',
|
||||
'NOTE',
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
@ -160,7 +160,17 @@ class ContactsSearchProviderTest extends TestCase {
|
|||
$this->backend->expects($this->once())
|
||||
->method('searchPrincipalUri')
|
||||
->with('principals/users/john.doe', 'search term',
|
||||
['N', 'FN', 'NICKNAME', 'EMAIL', 'ADR'],
|
||||
[
|
||||
'N',
|
||||
'FN',
|
||||
'NICKNAME',
|
||||
'EMAIL',
|
||||
'TEL',
|
||||
'ADR',
|
||||
'TITLE',
|
||||
'ORG',
|
||||
'NOTE',
|
||||
],
|
||||
['limit' => 5, 'offset' => 20])
|
||||
->willReturn([
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue