How to short-circuit in auth middleware?
throw a 401 Response, but that broke the server (500); can't just return a Response either, because middleware is expected to return a ServerRequestResult, and in that case, I'm not sure how to set the context property correctly so the types match, between the authenticated and unauthenticated cases. Any insight or advice is much appreciated, thanks.