Files
ihrm/base/signals.py
2024-03-10 14:07:46 +00:00

9 lines
276 B
Python

# from django.db.models.signals import post_save
# from notifications.signals import notify
# from base.models import *
# def my_handler(sender, instance, created, **kwargs):
# notify.send(instance, verb='was saved')
# post_save.connect(my_handler, sender=ShiftRequest)