mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-13 16:47:34 -06:00
21 lines
404 B
Python
21 lines
404 B
Python
__all__ = (
|
|
'JOB_COMPLETED',
|
|
'JOB_ERRORED',
|
|
'JOB_FAILED',
|
|
'JOB_STARTED',
|
|
'OBJECT_CREATED',
|
|
'OBJECT_DELETED',
|
|
'OBJECT_UPDATED',
|
|
)
|
|
|
|
# Object events
|
|
OBJECT_CREATED = 'object_created'
|
|
OBJECT_UPDATED = 'object_updated'
|
|
OBJECT_DELETED = 'object_deleted'
|
|
|
|
# Job events
|
|
JOB_STARTED = 'job_started'
|
|
JOB_COMPLETED = 'job_completed'
|
|
JOB_FAILED = 'job_failed'
|
|
JOB_ERRORED = 'job_errored'
|