mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
As discussed in #214, source_created and source_changed didn't really have clear definitions. In truth, their names and separation betray their origins as model receivers in earlier versions. The "source group" abstraction helped us get away from thinking about things exclusively in terms of models, but these remained as an artifact.
10 lines
194 B
Python
10 lines
194 B
Python
from django.dispatch import Signal
|
|
|
|
|
|
# Generated file signals
|
|
content_required = Signal()
|
|
existence_required = Signal()
|
|
|
|
# Source group signals
|
|
source_saved = Signal()
|
|
source_deleted = Signal()
|