diff --git a/server/api/user.py b/server/api/user.py index 048115e..08aa15a 100644 --- a/server/api/user.py +++ b/server/api/user.py @@ -13,8 +13,8 @@ blueprint = Blueprint("user", __name__) @blueprint.route("/register", methods=["POST"]) @api_wrapper def user_register(): - if not validate_captcha(request.form): - return { "success": 0, "message": "Please do the captcha." } + # if not validate_captcha(request.form): + # return { "success": 0, "message": "Please do the captcha." } name = request.form["name"] username = request.form["username"]