1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Update release notes for v3.0

This commit is contained in:
jeremystretch
2021-07-22 14:25:30 -04:00
parent 84479925bf
commit 8e7bcd95a4
3 changed files with 59 additions and 44 deletions

View File

@@ -90,7 +90,17 @@ CORS_ORIGIN_WHITELIST = [
## CUSTOM_VALIDATORS
This is a mapping of models to [custom validators](../customization/custom-validation.md) that have been defined locally to enforce custom validation logic.
This is a mapping of models to [custom validators](../customization/custom-validation.md) that have been defined locally to enforce custom validation logic. An example is provided below:
```python
CUSTOM_VALIDATORS = {
'dcim.site': (
Validator1,
Validator2,
Validator3
)
}
```
---