liberator

adam 2019-04-15T23:27:45.001200Z

I am using bidi router with liberator. How do I return a proper 404 page with the true catch-all route?

adam 2019-04-15T23:31:32.001800Z

(defresource not-found-handler
  :allowed-methods [:get]
  :available-media-types ["text/html"]
  :handle-not-found "Oops...")
...
true         not-found-handler
Is returning "OK" with 200 status code.