checkout/src/purchase/signals.py

5 lines
113 B
Python
Raw Normal View History

2022-09-25 21:08:44 +02:00
def basket_item_on_save(sender, **kwargs):
2022-09-25 21:46:14 +02:00
from purchase.models import Cache
2022-09-25 21:08:44 +02:00
2022-09-25 21:46:14 +02:00
Cache.get_solo().refresh()