Morten Andreasen
Morten Andreasen
Hi @morsok How is your PR coming along?
Hi @morsok I am asking because I am trying to do the exact same thing as you - to get the Rabbit MQ OAuth plugin to work together with tokens...
There is a similar issue reported on the BashOnWindows https://github.com/Microsoft/BashOnWindows/issues/903
Hi @bording It appears that this functionality has already been implemented in the RabbitMQ Java Client using an `CredentailsProvider` abstraction, but is not yet ported to the .NET client -...
@michaelklishin I am ready to put in some work. I was pretty much asking for a plan or backlog
Yes, using the `SelectorModel.EndpointMetadata` does the trick ``` public class AllowAnonymousConvention : IActionModelConvention { public void Apply(ActionModel action) { if (action.Controller.ControllerType.Equals(typeof(HelloWorldController))) { foreach (var s in action.Selectors) { s.EndpointMetadata.Add(new AuthorizeAttribute("allowAnonymous"));...