summaryrefslogtreecommitdiff
path: root/django/contrib/auth/models.py
AgeCommit message (Expand)Author
2018-12-27Followed style guide for model attribute ordering.Matt Wiens
2018-11-14Fixed #29939 -- Increased Group.name max_length to 150 characters.Timothy Allen
2018-09-26Fixed #29782 -- Added better error message when filtering queryset with Anony...Ramon Saraiva
2018-09-26Fixed #29683 -- Added view permission to docs.Stephen James
2018-08-01Fixed typos in comments and docs.luz.paz
2018-03-04Corrected User model docstring about required fields.ovalseven8
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-09-07Removed unneeded __init__() methods.Sergey Fedoseev
2017-05-29Fixed #26823 -- Prevented update_last_login signal receiver from crashing if ...Linus Lewandowski
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-02-04Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan
2017-01-28Fixed #26993 -- Increased User.last_name max_length to 150 characters.Thom Wiggers
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #25847 -- Removed support for User.is_(anonymous|authenticated) as methods.Tim Graham
2016-11-28Quoted group name in django/contrib/auth/models.py docstring.Nik Nyby
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-09-27Fixed #20705 -- Allowed using PasswordResetForm with user models with an emai...levental
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-13Used all() and a generator for PermissionsMixin.has_perms().Curtis Maloney
2016-06-24Fixed #26719 -- Normalized email in AbstractUser.clean().Bang Dao + Tam Huynh
2016-06-21Refs #21379, #26719 -- Moved username normalization to AbstractBaseUser.Tim Graham
2016-05-16Refs #21379 -- Normalized unicode username inputsClaude Paroz
2016-05-16Fixed #21379 -- Created auth-specific username validatorsClaude Paroz
2016-04-09Fixed #25847 -- Made User.is_(anonymous|authenticated) properties.Jeremy Lainé
2016-01-08Fixed #20846 -- Decreased User.username max_length to 150 characters.Collin Anderson
2015-10-29Fixed #20846 -- Increased User.username max_length to 254 characters.Tim Graham
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella
2015-07-12Fixed #25073 -- Added verbose_name to contrib's model fields that were missin...Szilveszter Farkas
2015-06-22Fixed #25009 -- Allowed User.objects.create_user(...,is_staff=True) to work.Francisco Albarran
2015-06-15Corrected to not erroneously mention email as being required.elena
2015-05-05Improved formatting of auth model fields.Edvinas Jurevicius
2015-05-05Fixed #24564 -- Moved AbstractBaseUser and BaseUserManager so they can be use...Dan Watson
2015-05-02Fixed #24737 -- Removed unnecesary kwargs in UserManager._create_user()Luis Del Giudice
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann
2014-09-18Fixed #23488 -- Added AnonymousUser.get_username().Damien Baty
2014-08-01Fixed #7220 -- Allowed AbstractBaseUser.last_login to be null.Tim Graham
2014-07-31Fixed #22956 -- Made PermissionManager.get_by_natural_key() use the correct d...Jürno Ader
2014-07-21Fixed typo in PermissionsMixin.groups.help_text.Iain Dawson
2014-07-21Replaced instances of 'his/her' with 'their'.Iain Dawson
2014-07-10Fixed #13147 -- Moved User validation logic from form to model.Yin Jifeng
2014-06-30Fixed #8162 -- Increased Permission.name max_length to 255 characters.Tim Graham
2014-05-16Fixed #15716 - Authentication backends can short-circuit authorization.Jorge C. Leitão
2014-04-05Fixed #21649 -- Added optional invalidation of sessions when user password ch...Tim Graham