1
0
mirror of https://github.com/django/django.git synced 2024-12-24 10:05:46 +00:00

[1.8.x] Updated startproject MIDDLEWARE_CLASSES in docs.

Backport of ad31bc0565 from master
This commit is contained in:
Daniel Harding 2015-04-24 13:55:03 +01:00 committed by Tim Graham
parent 415a65fc0c
commit 911e09833b

View File

@ -32,8 +32,10 @@ here's the default value created by :djadmin:`django-admin startproject
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.security.SecurityMiddleware',
)
A Django installation doesn't require any middleware —