Fix: Route name change.

This commit is contained in:
Pol Dellaiera 2022-04-26 11:50:59 +02:00
parent dc48b4b9c7
commit 81edaef062
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -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);
};