diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-10-10 16:11:25 +0200 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-10-31 11:52:46 -0700 |
commit | ac168cf9ff07ef57cda2453626e25d5a00283c21 (patch) | |
tree | 541e9e351b9e5625c12a5dea8b0e121ac1c5496b /tests | |
parent | b4e707059def28bf4544ae43272bf62d5662961b (diff) | |
download | nextcloud-server-ac168cf9ff07ef57cda2453626e25d5a00283c21.tar.gz nextcloud-server-ac168cf9ff07ef57cda2453626e25d5a00283c21.zip |
feat(contactsmenu): Show user status
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Contacts/ContactsMenu/EntryTest.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/lib/Contacts/ContactsMenu/EntryTest.php b/tests/lib/Contacts/ContactsMenu/EntryTest.php index 684edd9f25e..7b1ca5d5320 100644 --- a/tests/lib/Contacts/ContactsMenu/EntryTest.php +++ b/tests/lib/Contacts/ContactsMenu/EntryTest.php @@ -103,6 +103,11 @@ class EntryTest extends TestCase { 'emailAddresses' => ['user@example.com'], 'profileTitle' => null, 'profileUrl' => null, + 'status' => null, + 'statusMessage' => null, + 'statusIcon' => null, + 'isUser' => false, + 'uid' => null, ]; $this->entry->setId(123); |