Skip to content

Commit

Permalink
Merge pull request #130 from seilting/settings-without-prefixes
Browse files Browse the repository at this point in the history
Fix documentation wrt *_BACKEND settings.
  • Loading branch information
bennylope authored Jul 8, 2017
2 parents 7a505af + c44f3ed commit fc89f6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <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
---------------
Expand Down

0 comments on commit fc89f6b

Please sign in to comment.