X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/6d69e02f9265a0be1c762e0798e22ac764f2dafc..5a1de03a12a386e83a5c579fefd8e6ffbedc2794:/project/settings.py diff --git a/project/settings.py b/project/settings.py index b2c7f851..05518193 100644 --- a/project/settings.py +++ b/project/settings.py @@ -77,12 +77,14 @@ MIDDLEWARE_CLASSES = ( 'django.contrib.auth.middleware.AuthenticationMiddleware', 'explorer.middleware.EditorSettingsMiddleware', 'django.middleware.doc.XViewMiddleware', + + 'maintenancemode.middleware.MaintenanceModeMiddleware', ) ROOT_URLCONF = 'urls' TEMPLATE_DIRS = ( - PROJECT_ROOT + '/templates' + PROJECT_ROOT + '/templates', ) # CSS and JS files to compress @@ -113,6 +115,8 @@ INSTALLED_APPS = ( 'explorer', 'toolbar', + 'api', + 'wysiwyg', )