yada

kirill.salykin 2019-08-26T10:36:00.071100Z

please advice, is there a way to read custom reader tags from application/edn stream w/o overriding parse-stream "application/edn"? https://github.com/juxt/yada/blob/master/src/yada/request_body.clj I want to read #date "2019-08-26" as LocalDate thanks

borkdude 2019-08-26T10:40:28.072300Z

@kirill.salykin it’s probably a multimethod so you can provide your own thing if you need to

borkdude 2019-08-26T10:42:20.073100Z

Maybe registering them in data_readers.clj works though?

kirill.salykin 2019-08-26T11:09:17.073200Z

data_readers.clj seems not working so will override multimethod according to the code - there is no other way

kirill.salykin 2019-08-26T11:09:20.073400Z

thanks