Browse Source

Merge branch 'release/2.5.1' into develop

Olivier Massot 5 months ago
parent
commit
d9fbf91629
1 changed files with 15 additions and 0 deletions
  1. 15 0
      src/Entity/Organization/Parameters.php

+ 15 - 0
src/Entity/Organization/Parameters.php

@@ -211,6 +211,9 @@ class Parameters
     #[ORM\Column(options: ['default' => false])]
     private bool $showEducationIsACollectivePractice = false;
 
+    #[ORM\Column(options: ['default' => false])]
+    private bool $handlePresence = false;
+
     #[Pure]
     public function __construct()
     {
@@ -854,4 +857,16 @@ class Parameters
 
         return $this;
     }
+
+    public function isHandlePresence(): bool
+    {
+        return $this->handlePresence;
+    }
+
+    public function setHandlePresence(bool $handlePresence): self
+    {
+        $this->handlePresence = $handlePresence;
+
+        return $this;
+    }
 }