From 81edaef0629d0e5bb5a9072283da5835451978aa Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Tue, 26 Apr 2022 11:50:59 +0200 Subject: [PATCH] Fix: Route name change. --- .../ChillWopiBundle/src/Resources/config/routes/routes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillWopiBundle/src/Resources/config/routes/routes.php b/src/Bundle/ChillWopiBundle/src/Resources/config/routes/routes.php index 81ecb4e55..1dfb5e6af 100644 --- a/src/Bundle/ChillWopiBundle/src/Resources/config/routes/routes.php +++ b/src/Bundle/ChillWopiBundle/src/Resources/config/routes/routes.php @@ -9,11 +9,11 @@ declare(strict_types=1); -use Chill\WopiBundle\Controller\Test; +use Chill\WopiBundle\Controller\Editor; use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator; return static function (RoutingConfigurator $routes) { $routes ->add('chill_wopi_file_edit', '/edit/{fileId}') - ->controller(Test::class); + ->controller(Editor::class); };