mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-15 17:56:12 +01:00
8 lines
201 B
Python
8 lines
201 B
Python
from django.dispatch import receiver
|
|
from websiteFunctions.signals import postWebsiteDeletion
|
|
|
|
@receiver(postWebsiteDeletion)
|
|
def rcvr(sender, **kwargs):
|
|
request = kwargs['request']
|
|
return 200
|