Skip to content

Commit

Permalink
Updated comments to reflect changes to /components endpoint and accom…
Browse files Browse the repository at this point in the history
…panying

details function. Merged in changes from main.
  • Loading branch information
DerekFurstPitt committed Oct 16, 2023
1 parent 5eab03a commit 07dd8aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3809,7 +3809,7 @@ def paired_dataset(id):
Returns
--------
json array
List of uuids of the newly created component datasets
List of the newly created datasets represented as dictionaries.
"""
@app.route('/datasets/components', methods=['POST'])
def multiple_components():
Expand Down Expand Up @@ -4458,15 +4458,15 @@ def create_multiple_samples_details(request, normalized_entity_type, user_token,
One of the normalized entity types: Dataset, Collection, Sample, Donor
user_token: str
The user's globus groups token
json_data_dict: dict
The json request dict from user input
json_data_dict_list: list
List of datasets objects as dictionaries
creation_action : str
The creation action for the new activity node.
Returns
-------
list
A list of all the newly generated ids via uuid-api
A list of all the newly created datasets with generated fields represented as dictionaries
"""
def create_multiple_component_details(request, normalized_entity_type, user_token, json_data_dict_list, creation_action):
# Get user info based on request
Expand Down

0 comments on commit 07dd8aa

Please sign in to comment.