-
Notifications
You must be signed in to change notification settings - Fork 200
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
feat(Auth): Adding TOTP support in Amplify Auth category #3040
Conversation
/// username that will be used to construct the URI | ||
public let username: String | ||
|
||
public init(secretCode: String, username: String) { |
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.
Just double checking that the parameter name (secretCode
) not matching the property name (sharedSecret
) is expected.
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.
Fixed. Stupid Xcode refactor feature, I thought it would be smart enough to rename everything.
* feat(Auth): Adding TOTP support in Amplify Auth category * worked on review comments * adding more detailed comments for the new API's
* feat(Auth): Adding TOTP support in Amplify Auth category * worked on review comments * adding more detailed comments for the new API's
* feat(Auth): Adding TOTP support in Amplify Auth category * worked on review comments * adding more detailed comments for the new API's
* feat(Auth): Adding TOTP support in Amplify Auth category * worked on review comments * adding more detailed comments for the new API's
* feat(Auth): Adding TOTP support in Amplify Auth category * worked on review comments * adding more detailed comments for the new API's
* feat(Auth): Adding TOTP support in Amplify Auth category * worked on review comments * adding more detailed comments for the new API's
Description
TOTP PR Number # 1
Adding TOTP support in Amplify Auth Category
NOTE: The unit and integration tests will fail until all changes make it to the feature branch
(The PR is directed towards a feature branch)
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.