Skip to content

Commit

Permalink
cleanup, per Ryan's suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
tacman committed Oct 16, 2023
1 parent a927d7c commit 639d35e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions survos/command-bundle/1.5/config/routes/survos_command.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
<?php
// config/routes.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 route to the access_control key in security
->schemes(['https'])
->prefix('/admin') // consider adding this path to the access_control key in security
;
};

5 changes: 1 addition & 4 deletions survos/crawler-bundle/1.5/config/routes/survos_crawler.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
<?php
// config/routes.php

use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;

return static function (RoutingConfigurator $routes): void {
$routes->import('@SurvosCrawlerBundle/config/routes.php')
->prefix('/admin') // consider adding this route to the access_control key in security
->schemes(['https'])
->prefix('/admin') // consider adding this path to the access_control key in security
;
};

0 comments on commit 639d35e

Please sign in to comment.