feat(ux): remove admin dashboard and redirect directly to podcast list

As there is currently no info on the dashboard, it is unnecessary for now
This commit is contained in:
Yassine Doghri 2021-04-23 10:41:20 +00:00
commit 27c48b8fa9
No known key found for this signature in database
GPG key ID: 3E7F89498B960C9F
4 changed files with 3 additions and 6 deletions

View file

@ -12,6 +12,7 @@ class Home extends BaseController
{
public function index()
{
return view('admin/dashboard');
session()->keepFlashdata('message');
return redirect()->route('podcast-list');
}
}