Skip to content

Commit

Permalink
Change OAuth2.0 endpoints to lower-case (was camel)
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Aug 14, 2017
1 parent 2e4e28e commit c027e31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/webapps/galaxy/buildapp.py
Expand Up @@ -77,8 +77,8 @@ def paste_app_factory( global_conf, **kwargs ):
webapp.add_route( '/activate', controller='user', action='activate' )

# OAuth2.0 endpoints.
webapp.add_route('/OAuth2Authentication/google', controller='oauth2', action='google_authn')
webapp.add_route('/OAuth2Callback/google', controller='oauth2', action='google_callback')
webapp.add_route('/oauth2authentication/google', controller='oauth2', action='google_authn')
webapp.add_route('/oauth2callback/google', controller='oauth2', action='google_callback')

# These two routes handle our simple needs at the moment
webapp.add_route( '/async/{tool_id}/{data_id}/{data_secret}', controller='async', action='index', tool_id=None, data_id=None, data_secret=None )
Expand Down

0 comments on commit c027e31

Please sign in to comment.