mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-12 18:43:48 +01:00
Fix release creation using API
This commit is contained in:
parent
d8ee237b1d
commit
a026e2c2bb
@ -243,7 +243,11 @@ def create_release(token, package):
|
|||||||
if not package.checkPerm(token.owner, Permission.APPROVE_RELEASE):
|
if not package.checkPerm(token.owner, Permission.APPROVE_RELEASE):
|
||||||
error(403, "You do not have the permission to approve releases")
|
error(403, "You do not have the permission to approve releases")
|
||||||
|
|
||||||
data = request.json or request.form
|
if request.headers.get("Content-Type") == "application/json":
|
||||||
|
data = request.json
|
||||||
|
else:
|
||||||
|
data = request.form
|
||||||
|
|
||||||
if "title" not in data:
|
if "title" not in data:
|
||||||
error(400, "Title is required in the POST data")
|
error(400, "Title is required in the POST data")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user