mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-20 13:34:47 +01:00
fix: allow empty values (nullable)
This commit is contained in:
parent
e73a508011
commit
22451ca806
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ def api_validate_post_request(*, schema: dict):
|
|||
return jsonify({"message": "Content-Type must be `application/json`."}), HTTPStatus.BAD_REQUEST
|
||||
|
||||
v = Validator(schema)
|
||||
g.data = {key: request.json[key] for key in schema.keys()}
|
||||
g.data = {key: (request.json[key] if key in request.json else None) for key in schema.keys()}
|
||||
|
||||
if not v.validate(g.data):
|
||||
return jsonify({"message": f"Errors in request data: {v.errors}"}), HTTPStatus.BAD_REQUEST
|
||||
|
|
Loading…
Add table
Reference in a new issue