summaryrefslogtreecommitdiff
path: root/api.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'api.lisp')
-rw-r--r--api.lisp25
1 files changed, 0 insertions, 25 deletions
diff --git a/api.lisp b/api.lisp
deleted file mode 100644
index cecacb4..0000000
--- a/api.lisp
+++ /dev/null
@@ -1,25 +0,0 @@
-;;;; api.lisp -- http routes for dnd
-
-(in-package :dnd)
-
-(lzb:provision-app (api)
- :title "Dungeons & Deadlines"
- :version "0.1.0"
- :prefix "/api"
- :content-type "application/json"
- :auth 'default-auth)
-
-(defun default-auth (&rest ignore)
- (declare (ignore ignore))
- t)
-
-
-
-(defendpoint* :get "/hall-of-legends" ((filter-by identity))
- (:auth t)
- "Get a list of heros sorted by renown"
- (json:to-json
- (list :heroes
- (sort (copy-seq (db:store-objects-with-class 'hero))
- #'>
- :key #'renown))))