mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-26 01:40:24 +00:00
This allows a sensible specialized interface for source groups, but also for ImageKit to interact with specs using the generalized image generator interface.
10 lines
200 B
Python
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()
|