Backend for songs.zachdecook.com
Diffstat (limited to 'laravel/routes/web.php')
| -rw-r--r-- | laravel/routes/web.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/laravel/routes/web.php b/laravel/routes/web.php index 3618216..667ff51 100644 --- a/laravel/routes/web.php +++ b/laravel/routes/web.php @@ -23,6 +23,7 @@ Route::get('/s/{song}/suggested/{from}', 'SongController@suggested')->name('song Route::post('/s/{song}', 'SongController@update')->name('song.update')->middleware('can:update,song'); Route::get('/s/{song}/edit', 'SongController@edit')->name('song.edit')->middleware('can:update,song'); Route::get('/song/{song}', 'SongController@oldShow')->name('song.oldShow'); +Route::get('/random/', 'SongController@random'); Auth::routes(); |