Handle repository submission.
(request: Request, repo_url: str = Form(...), commit_id: str = Form(""))
| 47 | |
| 48 | @app.post("/", response_class=HTMLResponse) |
| 49 | async def index_post(request: Request, repo_url: str = Form(...), commit_id: str = Form("")): |
| 50 | """Handle repository submission.""" |
| 51 | return await web_routes.index_post(request, repo_url, commit_id) |
| 52 | |
| 53 | |
| 54 | @app.get("/api/job/{job_id}") |
nothing calls this directly
no test coverage detected