update time from created_at to processing_fisnnished

This commit is contained in:
Beverly Nguyen
2024-07-10 14:47:29 -07:00
parent a63bd4355c
commit 5042ba8d50
3 changed files with 3 additions and 3 deletions

View File

@@ -105,6 +105,7 @@ def service_dashboard(service_id):
".view_job", service_id=current_service.id, job_id=job["id"]
),
"created_at": job["created_at"],
"processing_finished": job["processing_finished"],
"notification_count": job["notification_count"],
"created_by": job["created_by"],
"notifications": aggregate_notifications_by_job.get(job["id"], []),