-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Authenticator should have a getStorage() method #18
Comments
Interesting idea, however, I'd like to know more about your use case. Just implementing |
I ended up creating a manager class for my authentication system, which encapsulates both the |
I encountered something similar when integrating this library. When creating a manager class for encapsulating i added a complete logout method like the one in your examples. But when doing so i needed to get the credential for the So my result was something like this: So in my case i needed to add the Just opening the conversation on this. There might be something i missed. |
I initialize my
Storage
together with myAuthenticator
as part of a single service in my DI container. So, it would be helpful if I could accessStorage
(for example, to callcleanAllTriplets
) through theAuthenticator
instance.The text was updated successfully, but these errors were encountered: