:handle-created
is meant to render the response after your POST request was successfully creating the resource. Typically you implement both and store whatever you want to return as the CREATED
response in the context. In handle-create
you extract the data you want from the context. The tutorial has an example on post which used redirect. Still you can get the idea
http://clojure-liberator.github.io/liberator/tutorial/post-et-al.html
@mario.cordova.862 ^^^^ I left a response on your question about handling post requests
@ordnungswidrig Thanks for clearing that up!