-
Notifications
You must be signed in to change notification settings - Fork 268
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
TokenManager storage options #266
Conversation
@@ -20,7 +20,8 @@ function setupSync(options) { | |||
redirectUri: 'https://example.com/redirect', | |||
tokenManager: { | |||
expireEarlySeconds: options.tokenManager.expireEarlySeconds || 0, | |||
storage: options.tokenManager.type, | |||
storage: options.tokenManager.storage, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯 to this change - having the tests match the naming is one of those subtle things that pays off so much down the line.
I just found this solution in the README for master branch and implemented it in my client before realizing the new version hadn't been released. Can we get a |
@hboylan We are planning to publish this week. I will update with another comment when it is published. |
@hboylan New version (2.10.0) has been published. Hopefully everything works as expected for you! If you see any issues, please open a new issue. Thanks for using our SDK. |
tokenManager.storageKey
Related GH issues:
#207
#215
#211