bug fix in ghesta manager permission

This commit is contained in:
Hesabix 2025-05-26 08:56:52 +00:00
parent 17af4bfaa9
commit 69c27c0109

View file

@ -126,6 +126,9 @@ class Permission
#[ORM\Column(nullable: true)]
private ?bool $plugHrmDocs = null;
#[ORM\Column(nullable: true)]
private ?bool $plugGhestaManager = null;
public function getId(): ?int
{
return $this->id;
@ -575,4 +578,16 @@ class Permission
return $this;
}
public function isPlugGhestaManager(): ?bool
{
return $this->plugGhestaManager;
}
public function setPlugGhestaManager(?bool $plugGhestaManager): static
{
$this->plugGhestaManager = $plugGhestaManager;
return $this;
}
}