add message link to staff note signature notifications

This commit is contained in:
2025-01-01 06:00:46 +00:00
parent c3bc40561b
commit 81ba235b08
4 changed files with 37 additions and 10 deletions

View File

@ -41,6 +41,9 @@ class Messages
#[ORM\JoinColumn(nullable: false)]
private ?User $sender = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $link = null;
public function getId(): ?Uuid
{
return $this->id;
@ -141,4 +144,16 @@ class Messages
'message' => $this->message
];
}
public function getLink(): ?string
{
return $this->link;
}
public function setLink(?string $link): static
{
$this->link = $link;
return $this;
}
}