feat(event): suspend event dates instead of cancelling

This commit is contained in:
2026-09-11 15:57:17 -03:00
parent 96df431d60
commit 1880fc8147
10 changed files with 52 additions and 29 deletions

View File

@@ -22,7 +22,7 @@ class EventDateResource extends JsonResource
'end_time' => substr($this->time_end, 0, 5),
'status' => $this->status->value,
'rescheduled_to_event_date_id' => $this->rescheduled_to_event_date_id,
'cancelled_at' => $this->cancelled_at?->toISOString(),
'suspended_at' => $this->suspended_at?->toISOString(),
];
}
}