From 673ea92ee25f625404a8ef3775114d66862f1506 Mon Sep 17 00:00:00 2001 From: John Draper Date: Sun, 14 Jun 2015 21:26:54 -0400 Subject: [PATCH] Document password management settings --- docs/advanced_topics/settings.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/advanced_topics/settings.rst b/docs/advanced_topics/settings.rst index fc791483d7..148429a154 100644 --- a/docs/advanced_topics/settings.rst +++ b/docs/advanced_topics/settings.rst @@ -207,6 +207,24 @@ Images This setting lets you provide your own image model for use in Wagtail, which might extend the built-in ``AbstractImage`` class or replace it entirely. + +Password Management +------------------- + +.. code-block:: python + + WAGTAIL_PASSWORD_MANAGEMENT_ENABLED = True + +This allows users to change their passwords. + +.. code-block:: python + + WAGTAIL_PASSWORD_RESET_ENABLED = True + +This allows users to reset their passwords. + + + Email Notifications -------------------