Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/auth_tests/models
Commit message (Collapse)AuthorAgeFilesLines
* Removed unnecessary app_label='auth' on auth_tests models.Tim Graham2015-10-274-21/+0
| | | | This is a relic of when the tests were stored in contrib.auth.tests.
* Fixed #25596 -- Fixed regression in password change view ↵Tim Graham2015-10-271-3/+0
| | | | | | | with custom user model. The reverse() added in 50aa1a790ca66c2a93e0a52e00c53375b269ff49 crashed on a custom user model.
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-3/+3
| | | | on_delete for ForeignKey/OneToOneField
* Sorted imports in __init__.py files.Tim Graham2015-06-271-4/+4
|
* Fixed #24910 -- Added createsuperuser support for ↵Alasdair Nicol2015-06-061-2/+13
| | | | | | | non-unique USERNAME_FIELDs Clarified docs to say that a non-unique USERNAME_FIELD is permissable as long as the custom auth backend can support it.
* Fixed #24161 -- Stored the user primary key as a ↵Tim Graham2015-02-122-1/+15
| | | | | | | | | | serialized value in the session. This allows using a UUIDField primary key along with the JSON session serializer. Thanks to Trac alias jamesbeith for the report and Simon Charette for the initial patch.
* Moved non-documented auth test models to the new test ↵Tim Graham2015-02-115-0/+141
location.