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

5
src/tixlbase/signals.py Normal file
View File

@@ -0,0 +1,5 @@
import django.dispatch
determine_availability = django.dispatch.Signal(
providing_args=["item", "variations", "context", "cache"]
)