-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for differentiating e-mail handling (verification, requ…
…ired) between local and social accounts: SOCIALACCOUNT_EMAIL_REQUIRED and SOCIALACCOUNT_EMAIL_VERIFICATION (closes #145)
- Loading branch information
Showing
9 changed files
with
56 additions
and
16 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 |
---|---|---|
@@ -1,3 +1,10 @@ | ||
2013-04-25 Raymond Penners <[email protected]> | ||
|
||
* Added support for differentiating e-mail handling (verification, | ||
required) between local and social accounts: | ||
`SOCIALACCOUNT_EMAIL_REQUIRED` and | ||
`SOCIALACCOUNT_EMAIL_VERIFICATION`. | ||
|
||
2013-04-16 Raymond Penners <[email protected]> | ||
|
||
* Version 0.10.1 released. | ||
|
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
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 |
---|---|---|
|
@@ -171,7 +171,7 @@ def test_username_in_blacklist(self): | |
'username': 'username', | ||
'email': '[email protected]', | ||
} | ||
form = BaseSignupForm(data) | ||
form = BaseSignupForm(data, email_required=True) | ||
self.assertFalse(form.is_valid()) | ||
|
||
@override_settings( | ||
|
@@ -182,5 +182,5 @@ def test_username_not_in_blacklist(self): | |
'username': 'theusername', | ||
'email': '[email protected]', | ||
} | ||
form = BaseSignupForm(data) | ||
form = BaseSignupForm(data, email_required=True) | ||
self.assertTrue(form.is_valid()) |
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
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
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