mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02:00
- update .devcontainer settings: remove auto-formatting for php + set intelephense as default formatter - remove prettier php plugin as it lacks php 8 support - add captain hook action for checking style pre-commit - fix style with ecs on all files except views
20 lines
424 B
PHP
20 lines
424 B
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Controllers\Admin;
|
|
|
|
use CodeIgniter\HTTP\RedirectResponse;
|
|
|
|
class HomeController extends BaseController
|
|
{
|
|
public function index(): RedirectResponse
|
|
{
|
|
session()->keepFlashdata('message');
|
|
return redirect()->route('podcast-list');
|
|
}
|
|
}
|