diff --git a/nmdc_runtime/api/endpoints/jobs.py b/nmdc_runtime/api/endpoints/jobs.py index df3f7eba..b34829c3 100644 --- a/nmdc_runtime/api/endpoints/jobs.py +++ b/nmdc_runtime/api/endpoints/jobs.py @@ -55,22 +55,3 @@ def claim_job( site: Site = Depends(get_current_client_site), ): return _claim_job(job_id, mdb, site) - - -@router.get( - "/jobs/{job_id}/executions", - description=( - "A sub-resource of a job resource, the result of a successful run of that job. " - "An execution resource may be retrieved by any site; however, it may be created " - "and updated only by the site that ran its job." - ), -) -def list_job_executions(): - # TODO - pass - - -@router.get("/jobs/{job_id}/executions/{exec_id}") -def get_job_execution(): - # TODO - pass