@ordnungswidrig Quick question, when dealing with :delete!
what is the equivalent of the :handle-created
?
or is everything handled within the :delete!
?
Important concept is that the actual response entity is returned by the :handle-xxx
functions. The returned value is then converted to the actual byte-stream or string format by the :as-response
implementation depending on the negotiated media-type and parameters.
See http://clojure-liberator.github.io/liberator/doc/handlers.html and http://clojure-liberator.github.io/liberator/doc/representations.html
Thanks I think it finally clicked now actually lol