mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* Introduce job_start and job_end signals, and receivers to process event rules * Complete signals documentation
This commit is contained in:
@ -4,10 +4,16 @@ from django.dispatch import Signal, receiver
|
||||
from .models import ConfigRevision
|
||||
|
||||
__all__ = (
|
||||
'job_end',
|
||||
'job_start',
|
||||
'post_sync',
|
||||
'pre_sync',
|
||||
)
|
||||
|
||||
# Job signals
|
||||
job_start = Signal()
|
||||
job_end = Signal()
|
||||
|
||||
# DataSource signals
|
||||
pre_sync = Signal()
|
||||
post_sync = Signal()
|
||||
|
Reference in New Issue
Block a user