summaryrefslogtreecommitdiff
path: root/django/contrib/auth/models.py
AgeCommit message (Expand)Author
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
2013-11-06Fixed #21387 -- Merge two very similar help texts.Ramiro Morales
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-21Fixed #21275 -- Fixed a serializer error when generating migrations for contr...Loic Bistuer
2013-09-24Marked PermissionsMixin.user_permissions help_text for translationMichał Lech
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-06Fixed a number of flake8 errors -- particularly around unused imports and loc...Alex Gaynor
2013-08-29Fixed #20881 -- Removed contrib.auth.models.AbstractUser.get_absolute_url()Tim Graham
2013-08-14Fixed #11400 -- Passed kwargs from AbstractUser.email_user() to send_mail()SusanTan
2013-06-29More import removalsClaude Paroz
2013-06-29Removed obsolete comment. Refs #20079.Aymeric Augustin
2013-06-28Removed custom profile model functionality as per deprecation TL.Ramiro Morales
2013-06-27Fixed #20244: PermissionsMixin now defines a related_query_name for M2MsAndrew Godwin
2013-06-27Fixed #20541 -- don't raise db signals twice when creating superuserAnton Baklanov
2013-06-18Fixed #20079 -- Improve security of password reset tokensErik Romijn
2013-05-29Don't hard-code class names when calling static methodsGavin Wahl
2013-03-30Remove unnecessary if conditionsAlisson
2013-03-01Fixed #19945 -- Fixed default User model Meta inheritance.matiasb
2013-01-06Fixed #19173 -- Made EmptyQuerySet a marker class onlyAnssi Kääriäinen
2012-12-29Advanced pending deprecation warnings.Aymeric Augustin
2012-12-15Fixed #19412 -- Added PermissionsMixin to the auth.User heirarchy.Russell Keith-Magee
2012-10-28Fixed #19061 -- added is_active attribute to AbstractBaseUserPreston Holmes
2012-10-13Fixed #19077, #19079 -- Made USERNAME_FIELD a required field, and modified Us...Russell Keith-Magee
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-09-17Only update `last_login` instead of the whole user object in `update_last_log...Florian Apolloner
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-12[py3] Removed redundant __str__ methods.Aymeric Augustin
2012-07-24Fixed #18666 -- when upgrading a user's password to a new algorithm only save...Alex Gaynor
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-10Fixed #18093 -- Added a pk to AnonymousUser.Aymeric Augustin
2012-04-26Fixed #18038 -- Removed the 'supports_inactive_user' backwards-compatibility ...Claude Paroz
2012-03-02Fixed #17046 -- Added a check if the username passed to User.objects.create_u...Jannis Leidel