()
| 127 | |
| 128 | @app.route("/api/update_config", methods=["POST"]) |
| 129 | def api_update_config(): |
| 130 | request_data = request.get_json() |
| 131 | update_config(request_data) |
| 132 | return jsonify({"success": True}) |
| 133 | |
| 134 | |
| 135 | @app.route("/api/set_config", methods=["POST"]) |
nothing calls this directly
no test coverage detected