i have a desire to implement an interceptor that attaches a datomic db onto the request context before being handled in the methods/*/response part of the resource. is there a way to globally modify the yada interceptor chain for all resources? or do i have to just write some helper fns to decorate a resource definition with said interceptor?
We postwalk our bidi structure to do that
so after (y/handler (y/resource ...))
you make the modifications?
We don't call handler on each resource, we call it on the bidi structure
:thumbsup: