Fork me on GitHub
#clojure
<
2023-09-29
>
evocatus10:09:47

Are there talks on ClojureTV or else about designing complex business logic/representing sets of rules as data? I need insights. Any type of materials you can recommend are appreciated ☺️

practicalli-johnny12:09:15

Several rule engine related videos listed in this ticket https://github.com/practicalli/clojure/issues/380

donaldball15:09:53

Fogus gave one at the conj a while back: https://www.youtube.com/watch?v=1E2CoObAaPQ

Felix Dorner16:09:47

Anyone knows how to bootstrap a martian for a remote openapi spec that’s protected by http basic auth?

1
Felix Dorner16:09:20

Only the spec is protected by basic. The api itself is oauth then.

lukasz16:09:48

Wouldn't passing basic auth creds in the spec URL work?

🙌 1
Felix Dorner16:09:23

Ah, the old way as user:password@.. hmm totally forgot about that!

hifumi12304:10:46

bootstrap-openapi takes in a map with interceptors. it may be possible to construct your own interceptor that adds the necessary Authorization header for basic authentication

Felix Dorner12:10:18

Yeah, I should try that. I wanted to understand if those interceptors are also used during the bootstrap request, but bailed out on it.