Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/eventyay/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ def instance_name(request):
'eventyay.plugins.webcheckin',
'eventyay.schedule',
'eventyay.submission',
'exhibitors',
)
INSTALLED_APPS = _LIBRARY_APPS + _OURS_APPS

Expand All @@ -182,6 +183,7 @@ def instance_name(request):
'eventyay.control',
'eventyay.plugins.checkinlists',
'eventyay.plugins.reports',
'exhibitors',
)
)

Expand All @@ -190,6 +192,10 @@ def instance_name(request):
PLUGINS.append(entry_point.module)
# INSTALLED_APPS += tuple(entry_point.module)

# Also check for eventyay plugins
for entry_point in entry_points(group='eventyay.plugin'):
PLUGINS.append(entry_point.module)

_LIBRARY_MIDDLEWARES = (
'corsheaders.middleware.CorsMiddleware',
'django.middleware.locale.LocaleMiddleware',
Expand Down
1 change: 1 addition & 0 deletions app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ dependencies = [
"et-xmlfile>=2.0.0",
"eventyay-paypal @ git+https://github.com/fossasia/eventyay-tickets-paypal.git@4728e6733d971edb4db6df4ebfe12caefd371d55",
"eventyay-stripe @ git+https://github.com/fossasia/eventyay-tickets-stripe.git@1d461de9ac7ef743cb2e6ddbace3434ba5ec6fcc",
"exhibitors @ git+https://github.com/fossasia/eventyay-tickets-exhibitors.git@enext",
"execnet>=2.1.1",
"faker>=37.3.0",
"fakeredis>=2.26.2",
Expand Down
Loading