mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-11 18:45:25 +00:00
added /oops endpoint for generating dummy exception
This commit is contained in:
parent
e7af602d32
commit
6483233f48
1 changed files with 3 additions and 0 deletions
|
@ -50,6 +50,9 @@ app.post "/pack", (req, res, next) ->
|
|||
app.get "/status", (req, res, next) ->
|
||||
res.send "track-changes is alive"
|
||||
|
||||
app.get "/oops", (req, res, next) ->
|
||||
throw new Error("dummy test error")
|
||||
|
||||
app.get "/check_lock", HttpController.checkLock
|
||||
|
||||
app.get "/health_check", HttpController.healthCheck
|
||||
|
|
Loading…
Add table
Reference in a new issue