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: deblan
GPG key ID: 03383D15A1D31745

View file

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