diff --git a/app/Controllers/Admin/Home.php b/app/Controllers/Admin/Home.php index a1db30a7..42e633db 100644 --- a/app/Controllers/Admin/Home.php +++ b/app/Controllers/Admin/Home.php @@ -12,6 +12,7 @@ class Home extends BaseController { public function index() { - return view('admin/dashboard'); + session()->keepFlashdata('message'); + return redirect()->route('podcast-list'); } } diff --git a/app/Helpers/rss_helper.php b/app/Helpers/rss_helper.php index 72e5a154..112b4648 100644 --- a/app/Helpers/rss_helper.php +++ b/app/Helpers/rss_helper.php @@ -54,10 +54,7 @@ function get_rss_feed($podcast, $serviceSlug = '') 'lastBuildDate', (new Time('now'))->format(DATE_RFC1123), ); - $channel->addChild( - 'generator', - 'Castopod 0.0.0-development - https://castopod.org/', - ); + $channel->addChild('generator', 'Castopod Host - https://castopod.org/'); $channel->addChild('docs', 'https://cyber.harvard.edu/rss/rss.html'); $channel->addChild('title', $podcast->title); diff --git a/app/Views/_assets/icons/dashboard.svg b/app/Views/_assets/icons/dashboard.svg old mode 100755 new mode 100644 diff --git a/app/Views/admin/_sidebar.php b/app/Views/admin/_sidebar.php index 59320ba1..65785a67 100644 --- a/app/Views/admin/_sidebar.php +++ b/app/Views/admin/_sidebar.php @@ -1,6 +1,5 @@ ['icon' => 'dashboard', 'items' => ['admin']], 'podcasts' => [ 'icon' => 'mic', 'items' => ['podcast-list', 'podcast-create', 'podcast-import'],