Browse Source

block out the route for editing an archive entry (end-of-session).

I'm going home after this commit. I've blocked out the routes I need
to work on when I get back to this -- so I know where I am with it.
stable
Craig Oates 2 years ago
parent
commit
57a6710e92
  1. 9
      src/web.lisp

9
src/web.lisp

@ -1044,6 +1044,15 @@
(utils:set-alert "You are not logged in.")
(redirect "/login"))))
(defroute ("/rename/archive-entry" :method :POST)
(format nil "ROUTE NOT IMPLEMENTED"))
(defroute ("/edit/archive" :method :POST)
(format nil "ROUTE NOT IMPLEMENTED"))
(defroute ("/edit/archive-thumbnail" :method :POST)
(format nil "ROUTE NOT IMPLEMENTED"))
(defroute ("/archive/delete/entry" :method :POST) ()
(destructuring-bind

Loading…
Cancel
Save