WIP: Implement feedback functionality
This commit is contained in:
@@ -7,6 +7,7 @@ class CrmAttributesResponse
|
||||
private ?array $attributeGroups = null;
|
||||
private bool $admin = false;
|
||||
private bool $manager = false;
|
||||
private bool $houseManager = false;
|
||||
private bool $teamer = false;
|
||||
|
||||
public function getAttributeGroups(): ?array
|
||||
@@ -56,6 +57,18 @@ class CrmAttributesResponse
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isHouseManager(): bool
|
||||
{
|
||||
return $this->houseManager;
|
||||
}
|
||||
|
||||
public function setHouseManager(bool $houseManager): static
|
||||
{
|
||||
$this->houseManager = $houseManager;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function toArray(): array
|
||||
{
|
||||
$crmSelections = [];
|
||||
|
||||
Reference in New Issue
Block a user