The very basics of the plugin API

This commit is contained in:
Raphael Michel
2014-10-06 23:30:36 +02:00
parent 7ded9e88d8
commit 3c6f8b77cb
17 changed files with 587 additions and 3 deletions

View 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'