This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-06-29
Channels
- # announcements (10)
- # babashka (18)
- # beginners (136)
- # calva (9)
- # cider (14)
- # clara (12)
- # clj-kondo (32)
- # cljsrn (3)
- # clojure (133)
- # clojure-europe (21)
- # clojure-nl (4)
- # clojure-uk (15)
- # clojurescript (60)
- # conjure (40)
- # cursive (12)
- # datomic (6)
- # emacs (2)
- # fulcro (19)
- # jackdaw (25)
- # jobs-discuss (3)
- # kaocha (3)
- # leiningen (5)
- # off-topic (99)
- # pedestal (1)
- # re-frame (49)
- # reagent (4)
- # ring (5)
- # rum (5)
- # shadow-cljs (53)
- # spacemacs (2)
- # sql (13)
- # timbre (2)
- # tools-deps (23)
- # vim (11)
- # xtdb (7)
Hi all, I have some trouble to set the name of the cookie for the ring-session Here is what i have but the name of the cookie stay ring-sesssion If someone have an idea ?
(def my-site-defaults
"A default configuration for a browser-accessible website that's accessed
securely over HTTPS."
(-> api-defaults
(assoc-in [:session :cookie-name] "jsessionid")))
(def fw-app
(-> (handler/site app-routes)
(reload/wrap-reload)
(wrap-default-charset "utf-8")
(wrap-defaults my-site-defaults)
(wrap-multipart-params)
(wrap-json-params)
(wrap-json-response {:pretty false})
(wrap-gzip)))