mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
12 lines
345 B
Markdown
12 lines
345 B
Markdown
# Signals
|
|
|
|
In addition to [Django's built-in signals](https://docs.djangoproject.com/en/stable/topics/signals/), NetBox defines some of its own, listed below.
|
|
|
|
## post_clean
|
|
|
|
This signal is sent by models which inherit from `CustomValidationMixin` at the end of their `clean()` method.
|
|
|
|
### Receivers
|
|
|
|
* `extras.signals.run_custom_validators()`
|