I'm a newbie with pedestal (pedestal.io) and I am trying to proxy all the requests I get from a browser, except a few specific ones which need some extra interceptors. These are my routes:
(def routes #{
["/*proxy" :any [(proxy-handler (server :dan-server))]]
["/service/storyboard/StoryboardLayer/auto" :post [dummy-interceptor (proxy-handler (server :dan-server))] :route-name :save-layer-route]
})
However I never get the dummy-interceptor called. How should these be combined?