How is authorization added to our requests from the frontend? I’m trying to hit an endpoint that I added like so but always get a `403` forbidden back. None of the other places that `fetch` is used seem to add the authorization header. I’m running the dev server and I am logged in. Is it because I added the endpoint while bundle watching `catalog-ui-search`? My endpoint is defined in `QueryApplication`.
fetch('/search/catalog/internal/cql/metacard/transforms')
.then(response => response.json())
.then(formats => this.setState({ formats }));