src/routes/rss-reader-routes.lisp

DOWNLOAD
(in-package :murja.routes.rss-reader-routes)

;; This will be called by cron/curl
(defroute update-feeds-rotue ("/api/rss/update" :method :get
						:decorators (@transaction)) ()
  (update-feeds)
  (setf (hunchentoot:return-code*) 204)
    "")