Moved CORE_MODULES to a setting

This commit is contained in:
Raphael Michel
2016-05-04 18:11:26 +02:00
parent bcc42db837
commit 1efdc1e44f
3 changed files with 9 additions and 3 deletions

View File

@@ -167,6 +167,12 @@ INSTALLED_APPS = [
for entry_point in iter_entry_points(group='pretix.plugin', name=None):
INSTALLED_APPS.append(entry_point.module_name)
CORE_MODULES = {
("pretix", "base"),
("pretix", "presale"),
("pretix", "control")
}
MIDDLEWARE_CLASSES = [
'pretix.multidomain.middlewares.MultiDomainMiddleware',
'pretix.multidomain.middlewares.SessionMiddleware',