summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-01 10:30:32 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:10 -0400
commitf1761e3fefadd9730e8b17c0995e1317c58bd10c (patch)
tree5a506ea142f083b7d4aa672650664754ed6c8363 /docs
parentfd6a299cd06fac615ccb9006df0dd98cd8461cc5 (diff)
Refs #21648 -- Removed is_admin_site option from password_reset() view.
Per deprecation timeline.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/default.txt7
1 files changed, 1 insertions, 6 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index 8da0e78c47..5d8d447a59 100644
--- a/docs/topics/auth/default.txt
+++ b/docs/topics/auth/default.txt
@@ -1219,7 +1219,7 @@ implementation details see :ref:`using-the-views`.
The ``current_app`` parameter is deprecated and will be removed in
Django 2.0. Callers should set ``request.current_app`` instead.
-.. function:: password_reset(request, is_admin_site=False, template_name='registration/password_reset_form.html', email_template_name='registration/password_reset_email.html', subject_template_name='registration/password_reset_subject.txt', password_reset_form=PasswordResetForm, token_generator=default_token_generator, post_reset_redirect=None, from_email=None, current_app=None, extra_context=None, html_email_template_name=None, extra_email_context=None)
+.. function:: password_reset(request, template_name='registration/password_reset_form.html', email_template_name='registration/password_reset_email.html', subject_template_name='registration/password_reset_subject.txt', password_reset_form=PasswordResetForm, token_generator=default_token_generator, post_reset_redirect=None, from_email=None, current_app=None, extra_context=None, html_email_template_name=None, extra_email_context=None)
Allows a user to reset their password by generating a one-time use link
that can be used to reset the password, and sending that link to the
@@ -1283,11 +1283,6 @@ implementation details see :ref:`using-the-views`.
* ``extra_email_context``: A dictionary of context data that will available
in the email template.
- .. deprecated:: 1.8
-
- The ``is_admin_site`` argument is deprecated and will be removed in
- Django 1.10.
-
.. deprecated:: 1.9
The ``current_app`` parameter is deprecated and will be removed in