Should (mostly) fix the new history page.

This commit is contained in:
2023-01-11 14:09:08 -08:00
parent 045aa01edc
commit b096863842
4 changed files with 82 additions and 82 deletions

View File

@@ -2,21 +2,21 @@
(:require
[amazonica.core :refer [defcredential]]
[auto-ap.client-routes :as client-routes]
[auto-ap.ssr.admin :as ssr-admin]
[auto-ap.routes.auth :as auth]
[auto-ap.routes.exports :as exports]
[auto-ap.routes.ezcater :as ezcater]
[auto-ap.routes.graphql :as graphql]
[auto-ap.routes.invoices :as invoices]
[auto-ap.routes.queries :as queries]
[auto-ap.routes.ezcater :as ezcater]
[auto-ap.routes.yodlee2 :as yodlee2]
[auto-ap.ssr.admin :as ssr-admin]
[bidi.bidi :as bidi]
[buddy.auth.backends.session :refer [session-backend]]
[buddy.auth.backends.token :refer [jws-backend]]
[buddy.auth.middleware :refer [wrap-authentication wrap-authorization]]
[clojure.string :as str]
[clojure.tools.logging :as log]
#_{:clj-kondo/ignore [:refer-all]}
[compojure.core :refer [defroutes GET routes context ANY]]
[compojure.core :refer [ANY context defroutes GET routes]]
[compojure.route :as route]
[config.core :refer [env]]
[mount.core :as mount]
@@ -24,6 +24,7 @@
[ring.middleware.multipart-params :as mp]
[ring.middleware.params :refer [wrap-params]]
[ring.middleware.reload :refer [wrap-reload]]
[ring.middleware.session :refer [wrap-session]]
[ring.util.response :as response]
[unilog.context :as lc]))
@@ -93,8 +94,12 @@
(def app
(-> #'app-routes
(wrap-logging)
(wrap-authorization auth-backend)
(wrap-authentication auth-backend)
(wrap-authorization auth-backend
)
(wrap-authentication auth-backend
(session-backend))
(wrap-session)
(wrap-reload)
(wrap-params)
(mp/wrap-multipart-params)