Skip to content

Commit 0ce170f

Browse files
committed
Fix API response to include/exclude trees
This is a hot fix from the current development branch, which might not be ready for prime time.
1 parent 84b2136 commit 0ce170f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

phylesystem_api/phylesystem_api/views/default.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def include_tree_in_synth(request):
381381
)
382382

383383
# fetch and return the updated list of synth-input trees
384-
return trees_in_synth(kwargs)
384+
return trees_in_synth(request)
385385

386386

387387
@view_config(route_name="exclude_tree_from_synth", renderer="json")
@@ -447,7 +447,7 @@ def exclude_tree_from_synth(request):
447447
)
448448

449449
# fetch and return the updated list of synth-input trees
450-
return trees_in_synth(kwargs)
450+
return trees_in_synth(request)
451451

452452

453453
def _get_synth_input_collection_ids():

0 commit comments

Comments
 (0)