Skip to content

Commit

Permalink
Consolidating POST only routes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstretenowich committed Feb 5, 2024
1 parent a1ae1c8 commit f5cfa61
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions project_tracking/api/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def readsets_from_samples(project_id: str, sample_id: str):
return sanity_check("Readset", action_output)


@bp.route('/<string:project>/digest_readset_file', methods=['GET', 'POST'])
@bp.route('/<string:project>/digest_readset_file', methods=['POST'])
@convcheck_project
def digest_readset_file(project_id: str):
"""
Expand All @@ -411,7 +411,7 @@ def digest_readset_file(project_id: str):
return db_action.digest_readset_file(project_id=project_id, digest_data=ingest_data)


@bp.route('/<string:project>/digest_pair_file', methods=['GET', 'POST'])
@bp.route('/<string:project>/digest_pair_file', methods=['POST'])
@convcheck_project
def digest_pair_file(project_id: str):
"""
Expand All @@ -432,7 +432,7 @@ def digest_pair_file(project_id: str):
return db_action.digest_pair_file(project_id=project_id, digest_data=ingest_data)


@bp.route('/<string:project>/ingest_run_processing', methods=['GET', 'POST'])
@bp.route('/<string:project>/ingest_run_processing', methods=['POST'])
@convcheck_project
def ingest_run_processing(project_id: str):
"""
Expand All @@ -459,7 +459,7 @@ def ingest_run_processing(project_id: str):
return [i.flat_dict for i in db_action.ingest_run_processing(project_id=project_id, ingest_data=ingest_data)]


@bp.route('/<string:project>/ingest_transfer', methods=['GET', 'POST'])
@bp.route('/<string:project>/ingest_transfer', methods=['POST'])
@convcheck_project
def ingest_transfer(project_id: str):
"""
Expand All @@ -478,7 +478,7 @@ def ingest_transfer(project_id: str):

return [i.flat_dict for i in db_action.ingest_transfer(project_id=project_id, ingest_data=ingest_data)]

@bp.route('/<string:project>/ingest_genpipes', methods=['GET', 'POST'])
@bp.route('/<string:project>/ingest_genpipes', methods=['POST'])
@convcheck_project
def ingest_genpipes(project_id: str):
"""
Expand Down Expand Up @@ -507,7 +507,7 @@ def ingest_genpipes(project_id: str):
jobs = [job.flat_dict for job in output[1]]
return [operation, jobs]

@bp.route('/<string:project>/digest_unanalyzed', methods=['GET', 'POST'])
@bp.route('/<string:project>/digest_unanalyzed', methods=['POST'])
@convcheck_project
def digest_unanalyzed(project_id: str):
"""
Expand Down

0 comments on commit f5cfa61

Please sign in to comment.