diff --git a/controllers/core.py b/controllers/core.py index 8331205c..23f1bce1 100644 --- a/controllers/core.py +++ b/controllers/core.py @@ -86,6 +86,7 @@ def contact_post(): @routes_core.route(Model_View_Contact.HASH_ALTCHA_CREATE_CHALLENGE, methods=['GET']) def create_altcha_challenge(): + Helper_App.console_log(f'secret key: {current_app.config["ALTCHA_SECRET_KEY"]}') options = ChallengeOptions( expires = datetime.datetime.now() + datetime.timedelta(hours=1), max_number = 100000, # The maximum random number @@ -155,4 +156,4 @@ def verify_altcha_challenge(): return jsonify({"verified": True}) else: return jsonify({"verified": False}), 403 -""" \ No newline at end of file +"""