mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 22:00:24 +00:00
...for now. Eventually, we will want a signal that tells us when sources are no longer used, however that isn't just limited to when they're deleted! This new signal should also be dispatched, for example, when a source image field is set to `None`. Since none of the built-in strategies are currently using the source_deleted signal, I've decided to remove it until we have a more complete solution.
9 lines
168 B
Python
9 lines
168 B
Python
from django.dispatch import Signal
|
|
|
|
|
|
# Generated file signals
|
|
content_required = Signal()
|
|
existence_required = Signal()
|
|
|
|
# Source group signals
|
|
source_saved = Signal()
|