This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only assert valid next_link params when provided (#8417)
Broken in #8275 and has yet to be put in a release. Fixes #8418. `next_link` is an optional parameter. However, we were checking whether the `next_link` param was valid, even if it wasn't provided. In that case, `next_link` was `None`, which would clearly not be a valid URL. This would prevent password reset and other operations if `next_link` was not provided, and the `next_link_domain_whitelist` config option was set.
- Loading branch information
1 parent
866c84d
commit 1c6b875
Showing
3 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add a config option to specify a whitelist of domains that a user can be redirected to after validating their email or phone number. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -732,6 +732,12 @@ def test_next_link_file_uri(self): | |
@override_config({"next_link_domain_whitelist": ["example.com", "example.org"]}) | ||
def test_next_link_domain_whitelist(self): | ||
"""Tests next_link parameters must fit the whitelist if provided""" | ||
|
||
# Ensure not providing a next_link parameter still works | ||
self._request_token( | ||
"[email protected]", "some_secret", next_link=None, expect_code=200, | ||
) | ||
|
||
self._request_token( | ||
"[email protected]", | ||
"some_secret", | ||
|