Remove ssify.
[wolnelektury.git] / src / wolnelektury / settings / apps.py
index 213f2e7..ba313f5 100644 (file)
@@ -1,7 +1,8 @@
 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
-#
-# These are the ones we should test.
+
+from machina import get_apps as get_machina_apps
+
 INSTALLED_APPS_OUR = [
     'wolnelektury',
     # our
@@ -57,7 +58,6 @@ INSTALLED_APPS_CONTRIB = [
     'fnpdjango',
     'getpaid',
     'getpaid.backends.payu',
-    'ssify',
     'django_extensions',
     'raven.contrib.django.raven_compat',
     'club.apps.ClubConfig',
@@ -72,6 +72,11 @@ INSTALLED_APPS_CONTRIB = [
     'allauth.socialaccount.providers.facebook',
     'allauth.socialaccount.providers.google',
     # 'allauth.socialaccount.providers.twitter',
-]
+
+    # Machina related apps:
+    'mptt',
+    'haystack',
+    'widget_tweaks',
+] + get_machina_apps()
 
 INSTALLED_APPS = INSTALLED_APPS_OUR + INSTALLED_APPS_CONTRIB