Skip to content
Snippets Groups Projects
Commit 73a3e60c authored by Allen Gilliland's avatar Allen Gilliland
Browse files

clojure lint fixes.

parent d2f08ca5
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@
(defendpoint GET "/:id"
"Get `Database` with ID."
[id]
(->404 (sel :one Database :id id)))
(check-404 (sel :one Database :id id)))
(defendpoint PUT "/:id"
"Update a `Database`."
......
......@@ -39,7 +39,7 @@
(defendpoint GET "/current"
"Fetch the current `User`."
[]
(->404 @*current-user*))
(check-404 @*current-user*))
(defendpoint GET "/:id"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment