2023-02-15 09:55:01 +02:00
|
|
|
Generated from request.py on 2023-02-14 15:33:37.135106
|
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.
|
|
|
|
|
|
2022-11-08 19:25:32 +02:00
|
|
|
---
|