django-imagekit/imagekit/specs/signals.py
Matthew Tretter fe803f8981 Beginning to move functionality into "sources"
Before this is applied, we're going to have to make it so that the
image cache strategies are passed the source file, not the other file.
2012-10-10 00:18:54 -04:00

5 lines
131 B
Python

from django.dispatch import Signal
source_created = Signal(providing_args=[])
source_changed = Signal()
source_deleted = Signal()