initial commit
This commit is contained in:
8
core/apps/banks/signals/banks.py
Normal file
8
core/apps/banks/signals/banks.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from django.db.models.signals import post_save
|
||||
from django.dispatch import receiver
|
||||
|
||||
from core.apps.banks.models import BanksModel
|
||||
|
||||
|
||||
@receiver(post_save, sender=BanksModel)
|
||||
def BanksSignal(sender, instance, created, **kwargs): ...
|
||||
Reference in New Issue
Block a user