django-imagekit/imagekit/signals.py
Matthew Tretter 3931b552a0 Separate source groups and cacheables.
This allows a sensible specialized interface for source groups, but also
for ImageKit to interact with specs using the generalized image
generator interface.
2013-01-29 01:40:00 -05:00

10 lines
200 B
Python

from django.dispatch import Signal
# "Cacheables" (cache file) signals
before_access = Signal()
# Source group signals
source_created = Signal()
source_changed = Signal()
source_deleted = Signal()