actualizacion

parent a886193d
......@@ -128,12 +128,12 @@ ws_notificacion_cobro:
test_video:
path: app/video
controller: App\BackendBundle\Controller\Test::video
controller: App\BackendBundle\Controller\TestController::video
methods: [GET]
get_video:
path: app/get/media/{key}
controller: App\BackendBundle\Controller\Test::getVideo
controller: App\BackendBundle\Controller\TestController::getVideo
requirements:
key: \d+
......
......@@ -14,7 +14,7 @@ class TestController extends AbstractController {
public function video(Request $request): Response {
$this->manager = $this->getDoctrine()->getManager('default');
return $this->render('test/index.html.twig', array());
return $this->render('test/index.html.twig');
}
public function getVideo(Request $request): Response {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment