mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
18 lines
412 B
Python
18 lines
412 B
Python
from django.apps import AppConfig
|
|
from tixlbase.plugins import PluginType
|
|
|
|
|
|
class TestDummyApp(AppConfig):
|
|
name = 'tixlplugins.testdummy'
|
|
verbose_name = '.testdummy'
|
|
|
|
class TixlPluginMeta:
|
|
type = PluginType.RESTRICTION
|
|
name = '.testdummy'
|
|
version = '1.0.0'
|
|
|
|
def ready(self):
|
|
from . import signals # NOQA
|
|
|
|
default_app_config = 'tixlplugins.testdummy.TestDummyApp'
|