From c44f3ed312719cd87a8e555ceb7542d801b22fea Mon Sep 17 00:00:00 2001 From: Simon Eilting Date: Fri, 16 Jun 2017 17:24:58 +0100 Subject: [PATCH] Fix documentation wrt *_BACKEND settings. --- README.rst | 2 +- docs/getting_started.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 2d6b61fc..1dbb447f 100644 --- a/README.rst +++ b/README.rst @@ -126,7 +126,7 @@ You can specify a different invitation backend in your project settings, and the `invitation_backend` function will provide the URLs defined by that backend:: - ORGS_INVITATION_BACKEND = 'myapp.backends.MyInvitationBackend' + INVITATION_BACKEND = 'myapp.backends.MyInvitationBackend' Usage Overview diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 2f277daf..667e5e2c 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -79,8 +79,8 @@ your project settings, and the `invitation_backend` function will provide the URLs defined by that backend. You can do the same with the :ref:`registration backend `:: - ORGS_INVITATION_BACKEND = 'myapp.backends.MyInvitationBackend' - ORGS_REGISTRATION_BACKEND = 'myapp.backends.MyRegistrationBackend' + INVITATION_BACKEND = 'myapp.backends.MyInvitationBackend' + REGISTRATION_BACKEND = 'myapp.backends.MyRegistrationBackend' Auto slug field ---------------