From ab0d667b3776786461d15112b648aafc3f00280f Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 28 Dec 2022 12:56:20 -0800 Subject: Refactor: to embrace the new dnd.api package more fully The defendpoint* form installs the new endpoint into the default app, which is just hte name of the package. In this case, the GET "/heroes" endpoint is installed into the app called 'dnd.api:dnd.api It is a bit wierd but that's the full name of the app that you'll need to install into your http server instances. I moved *dnd-arena* to the dnd package b/c the site/view app will also be installed there. In addition, the conjure-arena function should also be part of the "top level" dnd package. In the package.lisp file, I reformatted the file a bit for legibility. More importantly, I exported dnd.api and init-db from the dnd.api package. In particular, the second export sends a clear signal that the view/site code will not touch the model at all. --- api.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api.lisp') diff --git a/api.lisp b/api.lisp index ca60f21..f43127a 100644 --- a/api.lisp +++ b/api.lisp @@ -13,7 +13,7 @@ (declare (ignore ignore)) t) -(defendpoint api :get "/heroes" () +(defendpoint* :get "/heroes" () (:auth t) "Get a list of heros sorted by renown" (json:to-json -- cgit v1.2.3