add cache controle using createResponse on embedJs action

This commit is contained in:
Simon Vieille 2019-02-07 10:26:42 +01:00
parent 7195609086
commit 7c32234626
Signed by untrusted user: deblan
GPG key ID: 03383D15A1D31745

View file

@ -72,13 +72,10 @@ class ViewController extends Controller
{
$viewOptions = $this->getViewOptions($request, $gist, $commit);
return new Response(
$this->render('View/embedJs.html.twig', $viewOptions),
200,
array(
'Content-Type' => 'text/javascript',
)
);
$response = $this->createResponse('View/embedJs.html.twig', $viewOptions),
$response->headers->set('Content-Type', 'text/javascript');
return $response;
}
/**