commit/galaxy-central: dannon: Re-add secondary workflow api download route to support applications already using it.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/d1b435e7200d/ changeset: d1b435e7200d user: dannon date: 2013-03-06 19:09:35 summary: Re-add secondary workflow api download route to support applications already using it. affected #: 1 file diff -r 47480f11d5d5c99dfe67710cc4a7ecbaeebebb4a -r d1b435e7200d4543fe3060ba9c362220d73d615b lib/galaxy/webapps/galaxy/buildapp.py --- a/lib/galaxy/webapps/galaxy/buildapp.py +++ b/lib/galaxy/webapps/galaxy/buildapp.py @@ -153,6 +153,8 @@ # Defines a named route "import_workflow". webapp.api_mapper.connect("import_workflow", "/api/workflows/upload", controller="workflows", action="import_new_workflow", conditions=dict(method=["POST"])) webapp.api_mapper.connect("workflow_dict", '/api/workflows/{workflow_id}/download', controller='workflows', action='workflow_dict', conditions=dict(method=['GET'])) + # Preserve the following download route for now for dependent applications -- deprecate at some point + webapp.api_mapper.connect("workflow_dict", '/api/workflows/download/{workflow_id}', controller='workflows', action='workflow_dict', conditions=dict(method=['GET'])) # Connect logger from app if app.trace_logger: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org