Migrate from raven to sentry-sdk.
[wolnelektury.git] / src / wolnelektury / settings / contrib.py
index daa119d..66c8762 100644 (file)
@@ -1,11 +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.
 #
-from fnpdjango.utils.text.textilepl import textile_pl
-from migdal import EntryType
-from django.utils.translation import ugettext_lazy as _
-
 HONEYPOT_FIELD_NAME = 'miut'
 PAGINATION_INVALID_PAGE_RAISES_404 = True
 THUMBNAIL_QUALITY = 95
@@ -15,7 +10,6 @@ MODELTRANSLATION_PREPOPULATE_LANGUAGE = 'pl'
 
 MIGRATION_MODULES = {
     'getpaid': 'wolnelektury.migrations.getpaid',
-    'piston': 'wolnelektury.migrations.piston',
 }
 
 GETPAID_ORDER_DESCRIPTION = "{% load funding_tags %}{{ order|sanitize_payment_title }}"
@@ -34,17 +28,6 @@ PAYPAL_CONFIG = {
     'client_secret': '',
 }
 
-MARKUP_FIELD_TYPES = (
-    ('textile_pl', textile_pl),
-)
-
-MIGDAL_TYPES = (
-    EntryType('news', _('news'), commentable=False, on_main=True, promotable=True),
-    EntryType('publications', _('publications'), commentable=False),
-    EntryType('info', _('info'), commentable=False),
-    EntryType('event', _('events'), commentable=False),
-)
-
 REST_FRAMEWORK = {
     "DEFAULT_RENDERER_CLASSES": (
         'rest_framework.renderers.JSONRenderer',
@@ -52,5 +35,19 @@ REST_FRAMEWORK = {
         'api.renderers.LegacyXMLRenderer',
     ),
     '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',
+    },
+}