Skip to content

Commit

Permalink
redirect lti to show route
Browse files Browse the repository at this point in the history
  • Loading branch information
benIT committed Apr 27, 2018
1 parent 2dc5597 commit 325deea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppBundle/Controller/LtiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function showAction(Request $request, Video $video)
$ltiToolProvider = $this->get('app.lti.provider');
$ltiToolProvider->setRequest($request);
$ltiToolProvider->handleRequest();
return new RedirectResponse($this->get('router')->generate('video_hls', ['id' => $video->getId()]));
return new RedirectResponse($this->get('router')->generate('video_show', ['id' => $video->getId()]));
}

}

0 comments on commit 325deea

Please sign in to comment.