2023-04-13 11:45:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-08-27 13:26:06 +00:00
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
|
2023-04-13 11:45:03 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2023 Ad Aures
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
2023-08-27 13:26:06 +00:00
|
|
|
/** @var RouteCollection $routes */
|
2023-04-13 11:45:03 +00:00
|
|
|
|
|
|
|
$routes->get('static/(:any)', 'MediaController::serve/$1', [
|
2023-06-12 14:47:38 +00:00
|
|
|
'as' => 'media-serve',
|
2023-04-13 11:45:03 +00:00
|
|
|
'namespace' => 'Modules\Media\Controllers',
|
2023-07-19 15:04:17 +00:00
|
|
|
'filter' => 'allow-cors',
|
2023-04-13 11:45:03 +00:00
|
|
|
]);
|