From 69c27c01097bb05ac283fd71fbda9b7d5b671b3e Mon Sep 17 00:00:00 2001 From: Babak Alizadeh Date: Mon, 26 May 2025 08:56:52 +0000 Subject: [PATCH] bug fix in ghesta manager permission --- hesabixCore/src/Entity/Permission.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; + } + }