Files
symfony-flex-recipes-contrib/survos/command-bundle/1.5/config/routes/survos_command.php
T

10 lines
305 B
PHP

<?php
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
return static function (RoutingConfigurator $routes): void {
$routes->import('@SurvosCommandBundle/config/routes.php')
->prefix('/admin') // consider adding this path to the access_control key in security
;
};