Opened 11 years ago

Closed 11 years ago

#19535 closed Uncategorized (invalid)

AUTHENTICATION_BACKENDS setting missing from automatic admin documentation

Reported by: justin.fung@… Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

It'd be good to mention that the following snippet needs to be in settings.py in order for the automatic admin to work

AUTHENTICATION_BACKENDS = (

'django.contrib.auth.backends.ModelBackend',

)

Change History (1)

comment:1 by Aymeric Augustin, 11 years ago

Resolution: invalid
Status: newclosed

This is the default value of the AUTHENTICATION_BACKENDS setting; you don't need to repeat it in your own settings.

Note: See TracTickets for help on using tickets.
Back to Top