Skip to content

Commit

Permalink
add health-check
Browse files Browse the repository at this point in the history
  • Loading branch information
eucyt committed Dec 24, 2023
1 parent 9e012d7 commit c91575c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions laravel/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@
Route::delete('/papers/{id}', [PaperController::class, 'unregisterPdf'])->name('papers.unregisterPdf');

Route::redirect('/', route('papers.index'));

Route::get('/health-check', function () {
return 'OK';
});

0 comments on commit c91575c

Please sign in to comment.