diff options
author | floppydiskette <floppydisk@hyprcat.net> | 2024-12-27 18:47:40 +0000 |
---|---|---|
committer | floppydiskette <floppydisk@hyprcat.net> | 2024-12-27 18:47:40 +0000 |
commit | 3e97458ee28c79c16f7c792d96c01c44ea2356ed (patch) | |
tree | f661ecfc28ffc0a37e01420f91112daf13a8fa66 /routes | |
parent | 0a8db68e42956d4d6644e501b8822186f89ec559 (diff) |
rudimentary "spam filter"v2024.12.27
Diffstat (limited to 'routes')
-rw-r--r-- | routes/web.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php index 8af223c..09837dd 100644 --- a/routes/web.php +++ b/routes/web.php @@ -25,4 +25,5 @@ Route::get('/guestbook', [GuestbookController::class, 'show']); Route::get('/music', [MusicController::class, 'show']); Route::get('/rosco', [RoscoController::class, 'show']); Route::post('/guestbook', [GuestbookController::class, 'addEntry']) + ->middleware('validator') ->middleware('rate_limit'); |