mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
20 lines
427 B
PHP
20 lines
427 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
/** @var RouteCollection $routes */
|
|
$routes->group(
|
|
config('Admin')
|
|
->gateway,
|
|
[
|
|
'namespace' => 'Modules\Plugins\Controllers',
|
|
],
|
|
static function ($routes): void {
|
|
$routes->get('plugins', 'PluginsController', [
|
|
'as' => 'plugins',
|
|
'filter' => 'permission:podcasts.import',
|
|
]);
|
|
}
|
|
);
|