summaryrefslogtreecommitdiff
path: root/docs/topics/auth
AgeCommit message (Collapse)Author
2017-11-16[2.0.x] Fixed #28802 -- Fixed typo in docs/topics/auth/default.txt.Tim Graham
Backport of d392fc293c9439c19451e152f9560f24d1659563 from master
2017-10-28[2.0.x] Fixed #28131 -- Corrected examples of using attribute lookups on the ↵Botond Beres
"perms" template variable. Backport of 51d7feff872e74d5a53479f62163d5e0024b00ed from master
2017-10-25[2.0.x] Suggested LoginView rather than @login_required as an alternative to ↵Tim Graham
authenticate(). Backport of 3642c3758b3426292e02fe4669cc2d2028a9ac8c from master
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.
2017-06-26Refs #23919 -- Stopped inheriting from object to define new style classes.Mariusz Felisiak
Tests and docs complement to cecc079168e8669138728d31611ff3a1e7eb3a9f.
2017-05-06Fixed #28089 -- Removed requirement to implement get_short_name() and ↵Josh Schneier
get_full_name() in AbstractBaseUser subclasses.
2017-04-29Fixed typo in docs/topics/auth/default.txt.shinriyo
2017-04-26Added content_type filtering in Permission querying example.Nauman Tariq
2017-03-08Fixed #27911 -- Doc'd how to register custom User with admin.David D Lowe
2017-03-07Fixed #27891 -- Added PasswordResetConfirmView.post_reset_login_backend.Camilo Nova
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-17Refs #23957 -- Removed the useless SessionAuthenticationMiddleware.Tim Graham
2017-01-17Refs #25847 -- Removed support for User.is_(anonymous|authenticated) as methods.Tim Graham
Per deprecation timeline.
2017-01-17Refs #24126 -- Removed auth views' current_app parameter per deprecation ↵Tim Graham
timeline.
2016-12-31Removed nonexistent LogoutView context from docs.Tim Graham
2016-11-28Fixed typo in docs/topics/auth/customizing.txt.Tim Graham
2016-11-25Fixed #25966 -- Made get_user_model() work at import time.Aymeric Augustin
This makes it equivalent to: `from django.contrib.auth.models import User`. Thanks Aymeric Augustin for the initial patch and Tim Graham for the review.
2016-11-24Fixed typo in docs/topics/auth/customizing.txt.Alex Scott
2016-11-23Normalized casing of "custom user model".Tim Graham
2016-11-23Fixed #24370 -- Recommended starting with a custom user model.Krzysztof Gogolewski
2016-11-16Fixed #27467 -- Made UserAttributeSimilarityValidator max_similarity=0/1 ↵Tim Graham
work as documented. Thanks goblinJoel for the report and feedback.
2016-10-25Reverted "Fixed #26401 -- Added BaseAuthConfig to use auth without migrations."Jon Dufresne
This reverts commit 1ec1633cb294d8ce2a65ece6b56c258483596fba as it doesn't handle ContentType's auth.Permission dependency. Thus, it doesn't allow auth without migrations.
2016-10-18Fixed #27352 -- Doc'd social media fingerprinting consideration with login's ↵Markus Holtermann
redirect_authenticated_user.
2016-10-04Fixed #27292 -- Removed unnecessary password assignment in auth backend example.Tim Graham
2016-09-30Fixed #27294 -- Documented UserCreationForm's fields.Lewis Cowles
2016-09-27Fixed #20705 -- Allowed using PasswordResetForm with user models with an ↵levental
email field not named 'email'.
2016-09-23Simplified has_perm() example in topics/auth/customizing.txt.Berker Peksag
2016-09-17Fixed a typo in docs/topics/auth/default.txt.aruseni
2016-09-12Fixed #25187 -- Made request available in authentication backends.Aleksej Manaev
2016-09-10Fixed #26401 -- Added BaseAuthConfig to use auth without migrations.Jon Dufresne
2016-09-07Fixed #26956 -- Added success_url_allowed_hosts to LoginView and LogoutView.Jon Dufresne
Allows specifying additional hosts to redirect after login and log out.
2016-08-19Fixed #27013 -- Clarified commands to install argon2/bcrypt packages.Tim Graham
2016-08-15Fixed #27009 -- Made update_session_auth_hash() rotate the session key.Tim Graham
2016-08-11Clarified session verification with respect to the current session.Tim Graham
2016-08-10Fixed #26957 -- Corrected authenticate() docs regarding User.is_active.an0o0nym
2016-08-10Fixed #27045 -- Documented that AUTH_PASSWORD_VALIDATORS aren't applied at ↵Tim Graham
the model level.
2016-08-10Fixed #26960 -- Added PasswordResetConfirmView option to automatically log ↵jordij
in after a reset.
2016-07-28Fixed #26929 -- Deprecated extra_context parameter of ↵Andrew Nester
contrib.auth.views.logout_then_login().
2016-07-28Removed a blank line per isort and a trailing whitespace.Tim Graham
2016-07-16Fixed #17209 -- Added password reset/change class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-07-04Fixed a typo in auth docs.Jiang Haiyun
2016-06-27Added missing trailing '$' to url() patterns in docs.Ramiro Morales
2016-06-24Fixed #26719 -- Normalized email in AbstractUser.clean().Bang Dao + Tam Huynh
2016-06-24Refs #17209 -- Added LoginView and LogoutView class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-06-21Refs #21379, #26719 -- Moved username normalization to AbstractBaseUser.Tim Graham
Thanks Huynh Thanh Tam for the initial patch and Claude Paroz for review.
2016-06-15Fixed broken links in docs and comments.Ville Skyttä
2016-06-03Fixed #26021 -- Applied hanging indentation to docs.Ed Henderson