Podcast/details added, changed routes to add title to download/stream; added podcats/deatils

This commit is contained in:
2017-07-31 02:05:31 +02:00
parent 3f7af298f2
commit da9c6c26f5
2 changed files with 15 additions and 2 deletions

View File

@@ -25,9 +25,10 @@ $app->get('agenda/kalender[/{year:\d\d\d\d}/{month:\d\d?}]', 'AgendaController@c
$app->get('agenda/details/{id:\d+}', 'AgendaController@item' );
$app->get('podcast/overzicht', 'PodcastController@overview' );
$app->get('podcast/details/{id:\d+}', 'PodcastController@details' );
$app->get('podcast/programma/{id:\d+}', 'PodcastController@program' );
$app->get('podcast/download/{id:\d+}', 'PodcastController@download' );
$app->get('podcast/stream/{id:\d+}', 'PodcastController@stream' );
$app->get('podcast/download/{id:\d+}/{title}', 'PodcastController@download' );
$app->get('podcast/stream/{id:\d+}/{title}', 'PodcastController@stream' );
$app->get('programma/schema/nustraks', 'ProgramController@comingup' );
$app->get('programma/schema/week[/{shiftWeeks:-?\d+}]', 'ProgramController@schedule' );