forked from GNUsocial/gnu-social
11 lines
260 B
PHP
11 lines
260 B
PHP
<?php
|
|
|
|
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
|
|
|
use App\Controller\NetworkPublic;
|
|
|
|
return function (RoutingConfigurator $routes) {
|
|
$routes->add('network.public', '/main/all')
|
|
->controller(NetworkPublic::class);
|
|
};
|