/**
  * @param GoogleConnection $googleConnection
  *
  * @return Response
  *
  * @Route("/google-calendar/{id}", name="app_calendars_list_google_connections", methods="GET")
  * @Security("has_role('ROLE_CALD_CALD_SHOW')")
  */
 public function listByGoogleConnectionAction(GoogleConnection $googleConnection)
 {
     return $this->render('calendars/listByGoogleConnection.html.twig', ['calendars' => $googleConnection->getCalendars(), 'googleConnection' => $googleConnection]);
 }