Skip to content

Commit

Permalink
Add Sentry test endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
amcsi committed Dec 28, 2022
1 parent 644a5ed commit 1abb017
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions routes/api.php
Expand Up @@ -27,6 +27,7 @@
Route::get('/articles', [ArticleController::class, 'index']);
Route::get('/suggestions', [SuggestionController::class, 'index']);
Route::get('/footer-data', [FooterDataController::class, 'index']);
Route::get('/sentry-test', fn() => throw new \Exception('Sentry test'));

Route::middleware('auth:sanctum')->group(function () {
Route::post('suggestions', [SuggestionController::class, 'store']);
Expand Down

0 comments on commit 1abb017

Please sign in to comment.