mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-03-16 21:30:23 +00:00
* Remove signal's providing_args deprecated argument * Update docs for signal In PR #165 Co-authored-by: Andrew Chen Wang <60190294+Andrew-Chen-Wang@users.noreply.github.com>
5 lines
148 B
Python
5 lines
148 B
Python
from django.dispatch import Signal
|
|
|
|
# sender: name of table invalidated
|
|
# db_alias: name of database that was effected
|
|
post_invalidation = Signal()
|