I’d like to be able to modify the auth service endpoints so that /auth uses a default provider that I set. I have a custom provider and will also be using jwt.
I have overridden the serviceroute for AuthenticateService to “/auth” only. However, I’ve yet to figure out how to default this to my custom provider when JWTAuthProvider is also included.
Is there a way to now set the default?
I thought of possibly adding a request filter and setting the provider there when it’s empty for the request, but hoping there might be a simpler way.?