Skip to content

Commit

Permalink
Merge pull request galaxyproject#6703 from davebx/updates_api
Browse files Browse the repository at this point in the history
[18.05] Add missing route for API endpoint.
  • Loading branch information
dannon authored and davebx committed Sep 17, 2018
1 parent e080bab commit e049786
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/galaxy/webapps/galaxy/buildapp.py
Expand Up @@ -910,6 +910,12 @@ def populate_api_routes(webapp, app):
action='install',
conditions=dict(method=['POST']))

webapp.mapper.connect('check_for_updates',
'/api/tool_shed_repositories/check_for_updates',
controller='tool_shed_repositories',
action='check_for_updates',
conditions=dict(method=['GET']))

webapp.mapper.connect('tool_shed_repository',
'/api/tool_shed_repositories',
controller='tool_shed_repositories',
Expand Down

0 comments on commit e049786

Please sign in to comment.