You've already forked Atomcms-edit
Fix remaining issues: pagination, throttle, i18n, config defaults, indexes
- Add pagination to ShopController (50 per page)
- Add throttle:3,10 to radio application store route
- Replace mixed Dutch/English labels in RadioWizardController (English only)
- Replace Dutch error messages in RadioController and RadioSetupController
- Add config('habbo.defaults.avatar_look') for SocialAuthController
- Remove hardcoded default stream URL from RadioSetupController
- Add database indexes for radio_listener_points.earned_at and bans.ip
This commit is contained in:
@@ -37,7 +37,7 @@ Route::prefix('community')->group(function () {
|
||||
Route::prefix('radio')->group(function () {
|
||||
Route::get('/shouts', [RadioController::class, 'shouts'])->name('radio.shouts');
|
||||
Route::get('/dj-aanmelden', [RadioController::class, 'apply'])->name('radio.apply');
|
||||
Route::post('/dj-aanmelden', [RadioController::class, 'storeApplication'])->name('radio.apply.store');
|
||||
Route::post('/dj-aanmelden', [RadioController::class, 'storeApplication'])->name('radio.apply.store')->middleware('throttle:3,10');
|
||||
Route::post('/shouts', [RadioController::class, 'storeShout'])->name('radio.shouts.store');
|
||||
Route::post('/session/start', [RadioController::class, 'startSession'])->name('radio.session.start');
|
||||
Route::post('/session/end', [RadioController::class, 'endSession'])->name('radio.session.end');
|
||||
|
||||
Reference in New Issue
Block a user