Add more descriptive message for 404s.

This commit is contained in:
Jonathan Bernard 2019-02-21 23:46:45 -06:00
parent 774d0b446f
commit 80a3ba4621

View File

@ -180,7 +180,9 @@ proc start*(cfg: StrawBossConfig): void =
try: try:
let authToken = makeAuthToken(cfg, uname, pwd) let authToken = makeAuthToken(cfg, uname, pwd)
resp($(%authToken), JSON) resp($(%authToken), JSON)
except: jsonResp(Http401, getCurrentExceptionMsg()) except:
jsonResp(Http401, getCurrentExceptionMsg())
if ctx.cfg.debug: echo getStackTrace()
get "/verify-auth": get "/verify-auth":
checkAuth() checkAuth()
@ -445,7 +447,7 @@ proc start*(cfg: StrawBossConfig): void =
get re".*": get re".*":
jsonResp(Http404) jsonResp(Http404, "URL [" & request.path & "] is not present on this server.")
post re".*": post re".*":
jsonResp(Http404) jsonResp(Http404)