forked from CGM_Public/pretix_original
19 lines
412 B
Python
19 lines
412 B
Python
from django.apps import AppConfig
|
|
from pretix.base.plugins import PluginType
|
|
|
|
|
|
class TestDummyApp(AppConfig):
|
|
name = 'tests.testdummy'
|
|
verbose_name = '.testdummy'
|
|
|
|
class PretixPluginMeta:
|
|
type = PluginType.RESTRICTION
|
|
name = '.testdummy'
|
|
version = '1.0.0'
|
|
|
|
def ready(self):
|
|
from tests.testdummy import signals
|
|
|
|
|
|
default_app_config = 'tests.testdummy.TestDummyApp'
|