feat: additional attribute for synced with bpn status including filtering by

closes #869anf53g
This commit is contained in:
Björn Fromme
2025-09-30 18:36:08 +02:00
parent 4b8971e194
commit e23a5097ef
10 changed files with 127 additions and 1 deletions
+13
View File
@@ -18,6 +18,7 @@ class AssignmentFilterDto extends AbstractFilterDto
protected array $status = [];
protected bool $includePast = false;
protected ?string $country = null;
protected bool $syncedWithBusProNet = false;
public function getId(): ?int
{
@@ -126,4 +127,16 @@ class AssignmentFilterDto extends AbstractFilterDto
return $this;
}
public function isSyncedWithBusProNet(): bool
{
return $this->syncedWithBusProNet;
}
public function setSyncedWithBusProNet(bool $syncedWithBusProNet): static
{
$this->syncedWithBusProNet = $syncedWithBusProNet;
return $this;
}
}