Files

23 lines
459 B
Markdown
Raw Permalink Normal View History

2023-04-12 14:41:30 +03:00
Generated from request.py on 2023-04-12 10:09:44.563425
2021-10-15 03:25:38 -05:00
# peeringdb_server.request
Django HTTPRequest utilities.
# Functions
---
## bypass_validation
2022-01-11 08:56:47 -06:00
`def bypass_validation(request=None, check_admin=False)`
2021-10-15 03:25:38 -05:00
Return whether the specified request is to bypass
certain data quality validations. (#741)
If not request is passed, attempt to get
the current request from the current request
context.
If no request can be obtained this will return False.
2023-05-16 21:04:05 +03:00
---