diff options
author | Anna Larch <anna@nextcloud.com> | 2024-09-05 20:35:43 +0200 |
---|---|---|
committer | Anna <anna@nextcloud.com> | 2024-09-30 11:53:02 +0200 |
commit | 6468ec5716419f094586f9bc19684679530277c6 (patch) | |
tree | ccf4c720a08213f16569245f95f34431fdf65750 /apps/dav/lib/Command/ListCalendars.php | |
parent | da591eaec3050ab02b4a74d1304db78335eeb7fa (diff) | |
download | nextcloud-server-6468ec5716419f094586f9bc19684679530277c6.tar.gz nextcloud-server-6468ec5716419f094586f9bc19684679530277c6.zip |
feat(carddav): add command to list address booksfeat/add-addressbook-list-command
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'apps/dav/lib/Command/ListCalendars.php')
-rw-r--r-- | apps/dav/lib/Command/ListCalendars.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Command/ListCalendars.php b/apps/dav/lib/Command/ListCalendars.php index 5344530e8a5..06a1f7397c4 100644 --- a/apps/dav/lib/Command/ListCalendars.php +++ b/apps/dav/lib/Command/ListCalendars.php @@ -63,7 +63,7 @@ class ListCalendars extends Command { if (count($calendarTableData) > 0) { $table = new Table($output); - $table->setHeaders(['uri', 'displayname', 'owner\'s userid', 'owner\'s displayname', 'writable']) + $table->setHeaders(['URI', 'Displayname', 'Owner principal', 'Owner displayname', 'Writable']) ->setRows($calendarTableData); $table->render(); |