-
- Downloads
feat(rss): generate rss feed from podcast entity
- refactor episode, podcast and category entities to add dynamic properties - refactor Routes when adding feed route - update migration files to better fit itunes' and rss' specs - update podcast and episode forms - add SimpleRSSElement class to Libraries - add rss_helper - update home controller to redirect if system has only one podcast
Showing
- app/Config/App.php 1 addition, 1 deletionapp/Config/App.php
- app/Config/Routes.php 14 additions, 11 deletionsapp/Config/Routes.php
- app/Config/Toolbar.php 1 addition, 1 deletionapp/Config/Toolbar.php
- app/Controllers/BaseController.php 1 addition, 1 deletionapp/Controllers/BaseController.php
- app/Controllers/Episode.php 20 additions, 26 deletionsapp/Controllers/Episode.php
- app/Controllers/Feed.php 22 additions, 0 deletionsapp/Controllers/Feed.php
- app/Controllers/Home.php 11 additions, 1 deletionapp/Controllers/Home.php
- app/Controllers/Podcast.php 10 additions, 17 deletionsapp/Controllers/Podcast.php
- app/Database/Migrations/2020-05-29-152000_add_categories.php 2 additions, 2 deletionsapp/Database/Migrations/2020-05-29-152000_add_categories.php
- app/Database/Migrations/2020-05-30-101500_add_podcasts.php 10 additions, 3 deletionsapp/Database/Migrations/2020-05-30-101500_add_podcasts.php
- app/Database/Migrations/2020-06-05-170000_add_episodes.php 18 additions, 4 deletionsapp/Database/Migrations/2020-06-05-170000_add_episodes.php
- app/Entities/Category.php 14 additions, 0 deletionsapp/Entities/Category.php
- app/Entities/Episode.php 63 additions, 3 deletionsapp/Entities/Episode.php
- app/Entities/Podcast.php 33 additions, 3 deletionsapp/Entities/Podcast.php
- app/Helpers/database_helper.php 0 additions, 33 deletionsapp/Helpers/database_helper.php
- app/Helpers/id3_helper.php 5 additions, 5 deletionsapp/Helpers/id3_helper.php
- app/Helpers/media_helper.php 1 addition, 1 deletionapp/Helpers/media_helper.php
- app/Helpers/rss_helper.php 165 additions, 0 deletionsapp/Helpers/rss_helper.php
- app/Helpers/url_helper.php 0 additions, 20 deletionsapp/Helpers/url_helper.php
- app/Language/en/Episode.php 3 additions, 0 deletionsapp/Language/en/Episode.php
app/Controllers/Feed.php
0 → 100644
app/Helpers/database_helper.php
deleted
100644 → 0
app/Helpers/rss_helper.php
0 → 100644
Please register or sign in to comment