summaryrefslogtreecommitdiff
path: root/fai_gestion/plugins/CustomTheme/config/routes.php
blob: 62cbd6ca832fe1dac00a554a899f6ea49f34b5a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
use Cake\Routing\RouteBuilder;
use Cake\Routing\Router;
use Cake\Routing\Route\DashedRoute;

Router::plugin(
    'CustomTheme',
    ['path' => '/custom-theme'],
    function (RouteBuilder $routes) {
        $routes->fallbacks(DashedRoute::class);
    }
);