mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-21 23:50:22 +00:00
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.
5 lines
131 B
Python
5 lines
131 B
Python
from django.dispatch import Signal
|
|
|
|
source_created = Signal(providing_args=[])
|
|
source_changed = Signal()
|
|
source_deleted = Signal()
|