MIDDLEWARE += [
'django.contrib.admindocs.middleware.XViewMiddleware',
'fnp_django_pagination.middleware.PaginationMiddleware',
- 'maintenancemode.middleware.MaintenanceModeMiddleware',
]
if DEBUG:
'fnpdjango',
'django_cas_ng',
'bootstrap4',
+ 'rest_framework',
+ 'django_filters',
+ 'redakcja.api',
'catalogue',
+ 'depot',
'documents',
'cover',
'dvcs',
'CSS_COMPRESSOR': None,
'JS_COMPRESSOR': None,
'COMPILERS': (
- 'libsasscompiler.LibSassCompiler',
+ 'pipeline.compilers.sass.SASSCompiler',
),
# CSS and JS files to compress
}
+DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
+
+
SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
+REST_FRAMEWORK = {
+ 'DEFAULT_AUTHENTICATION_CLASSES': [
+ 'rest_framework.authentication.SessionAuthentication',
+ 'redakcja.api.auth.TokenAuthentication',
+ ],
+ 'DEFAULT_FILTER_BACKENDS': [
+ 'django_filters.rest_framework.DjangoFilterBackend',
+ 'rest_framework.filters.SearchFilter',
+ ]
+}
+
+
try:
SENTRY_DSN
except NameError: