This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-03-26
Channels
- # announcements (1)
- # autochrome-github (1)
- # babashka (9)
- # beginners (112)
- # bristol-clojurians (2)
- # calva (26)
- # cider (10)
- # clj-kondo (31)
- # cljs-dev (40)
- # clojure (114)
- # clojure-austin (1)
- # clojure-dev (112)
- # clojure-europe (22)
- # clojure-germany (5)
- # clojure-italy (1)
- # clojure-nl (2)
- # clojure-norway (1)
- # clojure-spec (10)
- # clojure-uk (96)
- # clojurescript (39)
- # core-logic (5)
- # datomic (40)
- # fulcro (34)
- # graphql (17)
- # jobs (3)
- # kaocha (4)
- # leiningen (10)
- # luminus (1)
- # malli (3)
- # meander (44)
- # midje (2)
- # off-topic (40)
- # pathom (5)
- # re-frame (8)
- # reitit (8)
- # ring (3)
- # ring-swagger (4)
- # shadow-cljs (83)
- # spacemacs (96)
- # tools-deps (16)
- # vim (4)
- # xtdb (15)
- # yada (20)
I tried this:
{(ds/opt :include-legacy-information) (st/spec {:spec boolean? :description "Deprecated" :deprecated true})}
but this entry is not propagated to swagger.json…you can anyway push any data to swagger definitions by namespacing them with swagger
, e.g. :swagger/deprecated true
@ikitommi there is deprecated in swagger: https://swagger.io/docs/specification/describing-parameters/ (ctrl+f for deprecated)
👌 4
Whats the correct way to get the current uri on itial load? we want to have users routed to the page they were last on. do i just call match by path on (.. js/document -location -href )?