Skip to content

Commit

Permalink
rm: remove unimplemented cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
dwinston committed Dec 5, 2024
1 parent 26e0a2f commit bec364a
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions nmdc_runtime/api/endpoints/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bec364a

Please sign in to comment.