Skip to content
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

Add scope and otp header to storage #30

Merged
merged 1 commit into from Feb 21, 2020
Merged

Conversation

asoraiamartins
Copy link
Contributor

Description

This PR adds scope and otp-token header to storage to allow the user to recover 2fa by email when he's not logged in on the mobile app.

@asoraiamartins asoraiamartins force-pushed the feature/reset-2fa-email branch 3 times, most recently from ffbb921 to a9ba19a Compare January 14, 2020 08:54
@@ -6,7 +6,7 @@ export class OTPRequiredError extends BaseError {
return false;
}

return headers['otp-token'].toUpperCase() === 'REQUIRED';
return headers['otp-token'].toUpperCase() === 'REQUIRED' || headers['otp-token'].toUpperCase() === 'OPTIONAL';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use lodash.includes

@asoraiamartins
Copy link
Contributor Author

@pgom updated

src/core/sdk.js Outdated
@@ -21,7 +22,9 @@ export default class SDK {
accessTokenKey: 'uphold.access_token',
baseUrl: 'https://api.uphold.com',
itemsPerPage: 10,
otpToken: 'uphold.otp_token',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

otp_token_status

@asoraiamartins
Copy link
Contributor Author

@SandroMachado updated

@pgom pgom merged commit 84f10f3 into master Feb 21, 2020
@pgom pgom deleted the feature/reset-2fa-email branch February 21, 2020 18:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants