fix : add task:read group to Project gitea fields for TaskModal visibility

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-13 14:18:19 +01:00
parent 3c0baee661
commit 94d7794c31

View File

@@ -65,11 +65,11 @@ class Project
private ?Client $client = null;
#[ORM\Column(length: 255, nullable: true)]
#[Groups(['project:read', 'project:write'])]
#[Groups(['project:read', 'project:write', 'task:read'])]
private ?string $giteaOwner = null;
#[ORM\Column(length: 255, nullable: true)]
#[Groups(['project:read', 'project:write'])]
#[Groups(['project:read', 'project:write', 'task:read'])]
private ?string $giteaRepo = null;
public function getId(): ?int