Added toolbar to project screen #1 (#50)

* fixed annotation #1
* added default label #1
* added project toolbar #1
This commit is contained in:
Kevin Papst
2018-01-07 22:32:28 +01:00
committed by GitHub
parent 79e87ecdbe
commit bb61ee8b86
11 changed files with 149 additions and 17 deletions

View File

@@ -73,6 +73,11 @@ class ProjectRepository extends AbstractRepository
// TODO check for visibility of customer
}
if ($query->getCustomer() !== null) {
$qb->andWhere('p.customer = :customer')
->setParameter('customer', $query->getCustomer());
}
return $this->getBaseQueryResult($qb, $query);
}
}