fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixes
[wolnelektury.git]
/
src
/
wolnelektury
/
settings
/
contrib.py
diff --git
a/src/wolnelektury/settings/contrib.py
b/src/wolnelektury/settings/contrib.py
index
978b6db
..
66c8762
100644
(file)
--- a/
src/wolnelektury/settings/contrib.py
+++ b/
src/wolnelektury/settings/contrib.py
@@
-1,9
+1,6
@@
-# -*- coding: utf-8 -*-
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
-from django.utils.translation import ugettext_lazy as _
-
HONEYPOT_FIELD_NAME = 'miut'
PAGINATION_INVALID_PAGE_RAISES_404 = True
THUMBNAIL_QUALITY = 95
HONEYPOT_FIELD_NAME = 'miut'
PAGINATION_INVALID_PAGE_RAISES_404 = True
THUMBNAIL_QUALITY = 95
@@
-39,5
+36,18
@@
REST_FRAMEWORK = {
),
'DEFAULT_AUTHENTICATION_CLASSES': (
'api.drf_auth.PistonOAuthAuthentication',
),
'DEFAULT_AUTHENTICATION_CLASSES': (
'api.drf_auth.PistonOAuthAuthentication',
+ 'rest_framework.authentication.SessionAuthentication',
)
}
)
}
+
+
+DEBUG_TOOLBAR_CONFIG = {
+ 'RESULTS_CACHE_SIZE': 100,
+}
+
+
+HAYSTACK_CONNECTIONS = {
+ 'default': {
+ 'ENGINE': 'haystack.backends.simple_backend.SimpleEngine',
+ },
+}