Exemplo n.º 1
0
 /**
  * @return array
  *
  * @Extra\Route(
  *      "/",
  *      name="weaving_the_web_dashboard_job_show_jobs"
  * )
  * @Extra\Template("WeavingTheWebDashboardBundle:Dashboard/Job:_list.html.twig")
  */
 public function showJobsAction()
 {
     $remote = $this->remoteRepository->findOneBy(['user' => $this->getUser(), 'selected' => true]);
     return ['active_menu_item' => 'dashboard_jobs', 'remote' => $remote];
 }