diff --git a/hesabixCore/src/Entity/Permission.php b/hesabixCore/src/Entity/Permission.php index ec735fb..e563135 100644 --- a/hesabixCore/src/Entity/Permission.php +++ b/hesabixCore/src/Entity/Permission.php @@ -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; + } + }