mozilla / django-browserid

Django application for adding BrowserID support.
Mozilla Public License 2.0
180 stars 80 forks source link

Mention LOGIN_REDIRECT_URL in documentation #162

Closed asmedrano closed 11 years ago

asmedrano commented 11 years ago

Tiny request: Mention LOGIN_REDIRECT_URL in the documentation in the "Configuration" section. Unless I just missed it :D

Ahmed-Saeed commented 11 years ago

it is already mentioned under details folder in the settings.rst file you will find it in Redirect URLs section

Redirect URLs

.. data:: LOGIN_REDIRECT_URL

**Default:** ``'/accounts/profile'``

Path to redirect to on successful login. If you don't specify this, the
default_ Django value will be used.

.. data:: LOGIN_REDIRECT_URL_FAILURE

**Default:** ``'/'``

Path to redirect to on an unsuccessful login attempt.

.. data:: LOGOUT_REDIRECT_URL

Default: '/'

Path to redirect to on logout.

peterbe commented 11 years ago

@Ahmed-Saeed is right. It's available here

asmedrano commented 11 years ago

Righto. Just missed it then.