use sent_at instead of updated_at

This commit is contained in:
Kenneth Kehl
2024-02-02 08:31:05 -08:00
parent 21c11adb5e
commit 802ebfa243
3 changed files with 13 additions and 13 deletions

View File

@@ -90,7 +90,7 @@ def view_notification(service_id, notification_id, error_message=None):
partials=get_single_notification_partials(notification),
created_by=notification.get("created_by"),
created_at=notification["created_at"],
updated_at=notification["updated_at"],
updated_at=notification["sent_at"],
help=get_help_argument(),
notification_id=notification["id"],
can_receive_inbound=(current_service.has_permission("inbound_sms")),