-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix to invalidate the second redirect URI when the first URI is the native URI #976
Fix to invalidate the second redirect URI when the first URI is the native URI #976
Conversation
@@ -75,4 +75,11 @@ | |||
expect(error).to eq('must be an HTTPS/SSL URI.') | |||
end | |||
end | |||
|
|||
context 'multiple redirect uri' do | |||
it 'invalidates the second uri when the first uri is native uri' do |
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.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
@@ -75,4 +75,11 @@ | |||
expect(error).to eq('must be an HTTPS/SSL URI.') | |||
end | |||
end | |||
|
|||
context 'multiple redirect uri' do |
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.
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
b82555e
to
67c9520
Compare
Hi @eitoball. Yep, it's a nice point! Could you please resolve the conflicts, add an entry to NEWS.md file and squash commits to a single one? Thank you! |
67c9520
to
da1116f
Compare
All Done. Thank you for checking in. |
This PR should fix to invalidates the second (or further) redirect URI when multiple redirect URIs are entered and the first URI is native URI like
urn:ietf:wg:oauth:2.0:oob
.