()
| 67 | |
| 68 | @app.route("/api/settings") |
| 69 | def api_settings(): |
| 70 | return jsonify({ |
| 71 | "PROJECT_MIN_PORT": PROJECT_MIN_PORT, |
| 72 | "PROJECT_MAX_PORT": PROJECT_MAX_PORT, |
| 73 | "ALLOW_OVERRIDABLE_PORTS_PER_PROJECT": ALLOW_OVERRIDABLE_PORTS_PER_PROJECT, |
| 74 | "PROXY_MODE": PROXY_MODE |
| 75 | }) |
| 76 | |
| 77 | @app.route("/api/projects", methods=["GET"]) |
| 78 | def list_projects(): |
nothing calls this directly
no outgoing calls
no test coverage detected