diff --git a/app/Controllers/Admin/Home.php b/app/Controllers/Admin/Home.php index a1db30a705a4f5a813b34d1a3c91bfadee4a2206..42e633dba7eb4f88d1c86d97542adeb3afab0c8d 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 72e5a1542b5545257df7ab14a20d417f9d1d7f33..112b4648a81d540573db40f8161ee377972b1a74 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 59320ba18ae6a71d1fd0324a15d3a1c9e95d2b63..65785a67714680cb980d6a11863ce4b45f7351b0 100644 --- a/app/Views/admin/_sidebar.php +++ b/app/Views/admin/_sidebar.php @@ -1,6 +1,5 @@ <?php $navigation = [ - 'dashboard' => ['icon' => 'dashboard', 'items' => ['admin']], 'podcasts' => [ 'icon' => 'mic', 'items' => ['podcast-list', 'podcast-create', 'podcast-import'],