Stream gemeenteraad voorbereid

This commit is contained in:
2020-01-31 22:03:49 +01:00
parent a23521a75d
commit 56dbd0a26a
2 changed files with 10 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ Route::get('/radio/gids/{shift?}', 'RadioController@schedule')->where(['shift' =
Route::get('/radio/programma/{id}/{title}', 'RadioController@program')->where(['id' => '\d+']);
Route::get('/luister/live', 'StreamController@liveradio');
Route::get('/luister/gemeenteraad', 'StreamController@gemeenteraad');
Route::get('/luister/fragment/{id}/{title}', 'StreamController@podcast')->where(['id' => '\d+']);
Route::get('/luister/programma/{year}/{month}/{day}/{hour}/{duration}/{offset?}', 'StreamController@program')
->where(['id' => '\d+', 'year' => '20\d\d', 'month' => '\d\d?', 'day' => '\d\d?', 'hour' => '\d\d?', 'duration' => '\d\d?', 'offset' => '\d\d?']);