/podcast/{overzicht,stream,download} toegevoegd
This commit is contained in:
@@ -16,8 +16,6 @@ $app->get('/', function () use ($app) {
|
||||
});
|
||||
|
||||
$app->get('nieuws/overzicht', 'NewsController@list' );
|
||||
$app->get('nieuws/overzicht/{count:\d+}', 'NewsController@list' );
|
||||
$app->get('nieuws/overzicht/{count:\d+}/{page:\d+}', 'NewsController@list' );
|
||||
$app->get('nieuws/bericht/{id:\d+}', 'NewsController@item' );
|
||||
|
||||
$app->get('agenda/overzicht[/week]', 'AgendaController@listWeek' );
|
||||
@@ -25,3 +23,15 @@ $app->get('agenda/overzicht/maand', 'AgendaController@listMonth' );
|
||||
$app->get('agenda/overzicht/alles', 'AgendaController@list' );
|
||||
$app->get('agenda/kalender[/{year:\d\d\d\d}/{month:\d\d?}]', 'AgendaController@calendar' );
|
||||
$app->get('agenda/details/{id:\d+}', 'AgendaController@item' );
|
||||
|
||||
$app->get('podcast/overzicht', 'PodcastController@list' );
|
||||
// podcast/programma/1234[?aantal=&pagina=]
|
||||
$app->get('podcast/download/{id:\d+}/[{title}]', 'PodcastController@download' );
|
||||
$app->get('podcast/stream/{id:\d+}/[{title}]', 'PodcastController@stream' );
|
||||
|
||||
// programma/nustraks
|
||||
// programma/schema
|
||||
// programma/details/{id:\d+}
|
||||
|
||||
// live/onair
|
||||
// live/stream
|
||||
|
||||
Reference in New Issue
Block a user