Adds latest episode api endpoint and some other minor modifications.
This commit is contained in:
@@ -26,7 +26,8 @@ Route::middleware('guest')->group(function () {
|
||||
->name('password.request');
|
||||
|
||||
Route::post('forgot-password', [PasswordResetLinkController::class, 'store'])
|
||||
->name('password.email');
|
||||
->name('password.email')
|
||||
->middleware('throttle:password-reset');
|
||||
|
||||
Route::get('reset-password/{token}', [NewPasswordController::class, 'create'])
|
||||
->name('password.reset');
|
||||
|
||||
@@ -26,6 +26,7 @@ Route::get('/artworks/{id}', [ArtworkController::class, 'show']);
|
||||
Route::get('/artist/{slug}', [ArtistController::class, 'show']);
|
||||
Route::get('/artists', [ArtistController::class, 'index']);
|
||||
Route::get('/podcasts/{slug}', [PodcastController::class, 'show']);
|
||||
Route::get('/podcasts/{slug}/latest_artwork', [PodcastController::class, 'latest_artwork']);
|
||||
Route::get('/podcast/{any}/episode/{slug}', [EpisodeController::class, 'show']);
|
||||
Route::get('/leaderboards', [PageController::class, 'leaderboards'])->name('leaderboards');
|
||||
Route::get('/support-development', [PageController::class, 'support'])->name('support');
|
||||
|
||||
Reference in New Issue
Block a user