From 3cc8b315623d3cb70576ec516c3246dd219ab986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Tue, 29 Oct 2024 17:02:48 +0100 Subject: [PATCH] feat: assign teamer requests as default text for special agreements --- src/Entity/Disposition.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Entity/Disposition.php b/src/Entity/Disposition.php index 0b07ffd..cc23d0d 100644 --- a/src/Entity/Disposition.php +++ b/src/Entity/Disposition.php @@ -68,6 +68,7 @@ class Disposition implements BlameableEntityInterface, TimestampableEntityInterf $this->assignment = $application->getAssignment(); $this->teamer = $application->getTeamer(); $this->pickup = $application->getPickup(); + $this->specialAgreements = $application->getRequests(); $this->documents = new ArrayCollection(); }