forked from CGM_Public/pretix_original
The very basics of the plugin API
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class TimeRestrictionApp(AppConfig):
|
||||
name = 'tixlplugins.timerestriction'
|
||||
verbose_name = "Time restriction"
|
||||
|
||||
def ready(self):
|
||||
from . import signals
|
||||
|
||||
default_app_config = 'tixlplugins.timerestriction.TimeRestrictionApp'
|
||||
Reference in New Issue
Block a user