X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6c74d7c9389a009ecda329c445d8f15c75326229..4651ff494aea3b433e8e8eb83a7bad7558538728:/src/wolnelektury/settings/contrib.py?ds=sidebyside

diff --git a/src/wolnelektury/settings/contrib.py b/src/wolnelektury/settings/contrib.py
index b0165c3de..de64990bc 100644
--- a/src/wolnelektury/settings/contrib.py
+++ b/src/wolnelektury/settings/contrib.py
@@ -3,6 +3,8 @@
 # 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
@@ -35,3 +37,10 @@ PAYPAL_CONFIG = {
 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),
+)