(redirect-after-post url)
Returns a Ring response for an HTTP 303 redirect. Deprecated in favor
of using redirect with a :see-other status.
Source
(defn redirect-after-post
"Returns a Ring response for an HTTP 303 redirect. Deprecated in favor
of using redirect with a :see-other status."
{:deprecated "1.4"}
[url]
{:status 303
:headers {"Location" url}
:body ""})