mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-28 04:46:18 +02:00
fix: allow empty values (nullable)
This commit is contained in:
@@ -35,7 +35,7 @@ def api_validate_post_request(*, schema: dict):
|
|||||||
return jsonify({"message": "Content-Type must be `application/json`."}), HTTPStatus.BAD_REQUEST
|
return jsonify({"message": "Content-Type must be `application/json`."}), HTTPStatus.BAD_REQUEST
|
||||||
|
|
||||||
v = Validator(schema)
|
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):
|
if not v.validate(g.data):
|
||||||
return jsonify({"message": f"Errors in request data: {v.errors}"}), HTTPStatus.BAD_REQUEST
|
return jsonify({"message": f"Errors in request data: {v.errors}"}), HTTPStatus.BAD_REQUEST
|
||||||
|
Reference in New Issue
Block a user