From fa775641525ab834481f3b3fb5dd6a7ed75593dc Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Mon, 31 Jul 2023 12:10:50 -0700 Subject: enh: rename to due date Signed-off-by: Christopher Ng --- apps/files_reminders/lib/Command/ListCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/files_reminders/lib/Command') diff --git a/apps/files_reminders/lib/Command/ListCommand.php b/apps/files_reminders/lib/Command/ListCommand.php index 074aeb87239..7d6044f21c6 100644 --- a/apps/files_reminders/lib/Command/ListCommand.php +++ b/apps/files_reminders/lib/Command/ListCommand.php @@ -75,12 +75,12 @@ class ListCommand extends Base { } $io->table( - ['UserId', 'Path', 'RemindAt', 'CreatedAt', 'Notified'], + ['UserId', 'Path', 'DueDate', 'CreatedAt', 'Notified'], array_map( fn (RichReminder $reminder) => [ $reminder->getUserId(), $reminder->getNode()->getPath(), - $reminder->getRemindAt()->format(DateTimeInterface::ATOM), // ISO 8601 + $reminder->getDueDate()->format(DateTimeInterface::ATOM), // ISO 8601 $reminder->getCreatedAt()->format(DateTimeInterface::ATOM), // ISO 8601 $reminder->getNotified() ? 'true' : 'false', ], -- cgit v1.2.3