mirror of
https://github.com/pretix/pretix.git
synced 2026-05-11 16:13:59 +00:00
The very basics of the plugin API
This commit is contained in:
11
src/tixlplugins/timerestriction/__init__.py
Normal file
11
src/tixlplugins/timerestriction/__init__.py
Normal file
@@ -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