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 d11a121..730f622 100644 --- a/laravel/routes/web.php +++ b/laravel/routes/web.php @@ -16,6 +16,7 @@ Route::get('/', function () { }); Route::get('/song/{song}', 'SongController@show')->name('song.show'); Route::get('/playlist/{playlist}', 'PlaylistController@show')->name('playlist.show'); +Route::post('/new/song', 'SongController@post')->name('song.postnew'); Auth::routes(); |