Fork me on GitHub
#pedestal
<
2020-05-10
>
souenzzo16:05:53

Hello. There is some tool to "compose" pedestal services? My problem: I have a HTTP service that has csrf-enabled {} but now I need to add a public post route

jkxyz17:05:37

the CSRF protection is just an interceptor, so you could remove it from the default interceptors (by removing csrf-enabled from the service map) and only include it for the routes you want to use it for

4