forked from CGM_Public/pretix_original
14 lines
299 B
Python
14 lines
299 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PretixControlConfig(AppConfig):
|
|
name = 'pretix.control'
|
|
label = 'pretixcontrol'
|
|
|
|
def ready(self):
|
|
from .views import dashboards # noqa
|
|
from . import logdisplay # noqa
|
|
|
|
|
|
default_app_config = 'pretix.control.PretixControlConfig'
|