Make auto adding author optional

This commit is contained in:
Iacopo Spalletti 2014-10-11 09:05:02 +02:00
commit 2b0bfc010e
8 changed files with 54 additions and 1 deletions

View file

@ -9,6 +9,7 @@ HELPER_SETTINGS = {
],
'ROOT_URLCONF': 'tests.test_utils.urls',
'INSTALLED_APPS': [
'django.contrib.messages',
'admin_enhancer',
'filer',
'parler',
@ -71,6 +72,9 @@ HELPER_SETTINGS = {
'hide_untranslated': False,
}
},
'MIDDLEWARE_CLASSES': [
'django.contrib.messages.middleware.MessageMiddleware',
],
'META_SITE_PROTOCOL': 'http',
'META_SITE_DOMAIN': 'example.com',
'META_USE_OG_PROPERTIES': True,