()
| 134 | |
| 135 | @app.route("/api/set_config", methods=["POST"]) |
| 136 | def api_set_config(): |
| 137 | request_data = request.get_json() |
| 138 | set_config(request_data) |
| 139 | return jsonify({"success": True}) |
| 140 | |
| 141 | |
| 142 | @app.route("/api/create_project", methods=["POST"]) |
nothing calls this directly
no test coverage detected