Permettre d'annuler un rendez-vous

This commit is contained in:
2025-11-06 15:07:11 +00:00
committed by Julien Fastré
parent f75d1da3b1
commit a4cfc6a178
18 changed files with 296 additions and 78 deletions

View File

@@ -269,6 +269,11 @@ class Calendar implements TrackCreationInterface, TrackUpdateInterface, HasCente
return $this->cancelReason;
}
public function isCanceled(): bool
{
return null !== $this->cancelReason;
}
public function getCenters(): ?iterable
{
return match ($this->getContext()) {