mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
fix(admin): redirect root fediverse route to fediverse-blocked-actors
This commit is contained in:
parent
d100fe0999
commit
ba5324ea19
1 changed files with 4 additions and 2 deletions
|
|
@ -10,11 +10,13 @@ declare(strict_types=1);
|
|||
|
||||
namespace Modules\Admin\Controllers;
|
||||
|
||||
use CodeIgniter\HTTP\RedirectResponse;
|
||||
|
||||
class FediverseController extends BaseController
|
||||
{
|
||||
public function dashboard(): string
|
||||
public function dashboard(): RedirectResponse
|
||||
{
|
||||
return view('fediverse/dashboard');
|
||||
return redirect()->route('fediverse-blocked-actors');
|
||||
}
|
||||
|
||||
public function blockedActors(): string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue