bug fix in ghesta manager permission
This commit is contained in:
parent
17af4bfaa9
commit
69c27c0109
|
@ -126,6 +126,9 @@ class Permission
|
||||||
#[ORM\Column(nullable: true)]
|
#[ORM\Column(nullable: true)]
|
||||||
private ?bool $plugHrmDocs = null;
|
private ?bool $plugHrmDocs = null;
|
||||||
|
|
||||||
|
#[ORM\Column(nullable: true)]
|
||||||
|
private ?bool $plugGhestaManager = null;
|
||||||
|
|
||||||
public function getId(): ?int
|
public function getId(): ?int
|
||||||
{
|
{
|
||||||
return $this->id;
|
return $this->id;
|
||||||
|
@ -575,4 +578,16 @@ class Permission
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function isPlugGhestaManager(): ?bool
|
||||||
|
{
|
||||||
|
return $this->plugGhestaManager;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setPlugGhestaManager(?bool $plugGhestaManager): static
|
||||||
|
{
|
||||||
|
$this->plugGhestaManager = $plugGhestaManager;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue