2020-07-10 12:20:25 +00:00
|
|
|
<?php
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Controllers\Admin;
|
|
|
|
|
2021-05-14 17:59:35 +00:00
|
|
|
use CodeIgniter\HTTP\RedirectResponse;
|
2021-05-19 16:35:13 +00:00
|
|
|
|
2021-05-12 14:00:25 +00:00
|
|
|
class HomeController extends BaseController
|
2020-07-10 12:20:25 +00:00
|
|
|
{
|
2021-05-14 17:59:35 +00:00
|
|
|
public function index(): RedirectResponse
|
2020-07-10 12:20:25 +00:00
|
|
|
{
|
2021-04-23 10:41:20 +00:00
|
|
|
session()->keepFlashdata('message');
|
|
|
|
return redirect()->route('podcast-list');
|
2020-07-10 12:20:25 +00:00
|
|
|
}
|
|
|
|
}
|