detail pages for customers and projects (#1371)
This commit is contained in:
@@ -26,6 +26,10 @@ class ActivityQuery extends ProjectQuery
|
||||
* @var bool
|
||||
*/
|
||||
private $globalsOnly = false;
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
private $excludeGlobals = false;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
@@ -54,6 +58,18 @@ class ActivityQuery extends ProjectQuery
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isExcludeGlobals(): bool
|
||||
{
|
||||
return (bool) $this->excludeGlobals;
|
||||
}
|
||||
|
||||
public function setExcludeGlobals(bool $excludeGlobals): self
|
||||
{
|
||||
$this->excludeGlobals = (bool) $excludeGlobals;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Project|int|null
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user