mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 21:35:55 +01:00
local changes
This commit is contained in:
@@ -4,37 +4,37 @@
|
||||
from django.dispatch import Signal
|
||||
|
||||
## This event is fired before CyberPanel core start creation of an email account.
|
||||
preSubmitEmailCreation = Signal(providing_args=["request"])
|
||||
preSubmitEmailCreation = Signal()
|
||||
|
||||
## This event is fired after CyberPanel core finished creation of an email account.
|
||||
postSubmitEmailCreation = Signal(providing_args=["request", "response"])
|
||||
postSubmitEmailCreation = Signal()
|
||||
|
||||
## This event is fired before CyberPanel core start deletion of an email account
|
||||
preSubmitEmailDeletion = Signal(providing_args=["request"])
|
||||
preSubmitEmailDeletion = Signal()
|
||||
|
||||
## This event is fired after CyberPanel core finished deletion of an email account
|
||||
postSubmitEmailDeletion = Signal(providing_args=["request", "response"])
|
||||
postSubmitEmailDeletion = Signal()
|
||||
|
||||
## This event is fired before CyberPanel core start deletion of email forwarding.
|
||||
preSubmitForwardDeletion = Signal(providing_args=["request"])
|
||||
preSubmitForwardDeletion = Signal()
|
||||
|
||||
## This event is fired after CyberPanel core finished deletion of email forwarding.
|
||||
postSubmitForwardDeletion = Signal(providing_args=["request", "response"])
|
||||
postSubmitForwardDeletion = Signal()
|
||||
|
||||
## This event is fired before CyberPanel core start creation of email forwarding.
|
||||
preSubmitEmailForwardingCreation = Signal(providing_args=["request"])
|
||||
preSubmitEmailForwardingCreation = Signal()
|
||||
|
||||
## This event is fired after CyberPanel core finished creation of email forwarding.
|
||||
postSubmitEmailForwardingCreation = Signal(providing_args=["request", "response"])
|
||||
postSubmitEmailForwardingCreation = Signal()
|
||||
|
||||
## This event is fired before CyberPanel core start changing password for email account.
|
||||
preSubmitPasswordChange = Signal(providing_args=["request"])
|
||||
preSubmitPasswordChange = Signal()
|
||||
|
||||
## This event is fired after CyberPanel core finished changing password for email account.
|
||||
postSubmitPasswordChange = Signal(providing_args=["request", "response"])
|
||||
postSubmitPasswordChange = Signal()
|
||||
|
||||
## This event is fired before CyberPanel core start generating dkim keys.
|
||||
preGenerateDKIMKeys = Signal(providing_args=["request"])
|
||||
preGenerateDKIMKeys = Signal()
|
||||
|
||||
## This event is fired after CyberPanel core finished generating dkim keys.
|
||||
postGenerateDKIMKeys = Signal(providing_args=["request", "response"])
|
||||
postGenerateDKIMKeys = Signal()
|
||||
Reference in New Issue
Block a user