mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- create Admin, Analytics, Auth, Fediverse and Install modules in the root modules/ folder - rename ActivityPub to Fediverse
23 lines
454 B
PHP
23 lines
454 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace Modules\Admin\Controllers;
|
|
|
|
use CodeIgniter\HTTP\RedirectResponse;
|
|
|
|
class HomeController extends BaseController
|
|
{
|
|
public function index(): RedirectResponse
|
|
{
|
|
session()->keepFlashdata('message');
|
|
return redirect()->route('podcast-list');
|
|
}
|
|
}
|