How to expose information from an authorization middleware, such as the logged-in user to the subsequent request controllers with Aqueduct?
Eg my route is:
.route('/events/[:id]')
.link(() => SecretKeyAuthorizer(context))
.link(() => EventsController(context));
And the SecretKeyAuthorizer uses a header to find the current User. And I'd like to use the information from the User in the EventsController.