Add getOtherParameters to Resq job order handler. #329

This commit is contained in:
Korina Cordero 2020-02-06 07:21:39 +00:00
parent 49d0e6b97e
commit b7cae5afe2

View file

@ -2212,6 +2212,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
return null; return null;
} }
public function getOtherParameters()
{
// get riders for dropdown
$params['riders'] = $this->em->getRepository(Rider::class)->findAll();
return $params;
}
protected function fillDropdownParameters(&$params) protected function fillDropdownParameters(&$params)
{ {