mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-02-09 08:06:47 +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
|