commit/galaxy-central: dannon: Allow anonymous access to list/show in api/histories.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/1c7460ba03f9/ Changeset: 1c7460ba03f9 User: dannon Date: 2013-04-03 17:54:28 Summary: Allow anonymous access to list/show in api/histories. Affected #: 1 file diff -r c1faecf25f52a01cf55ba95df42791bf3399ed59 -r 1c7460ba03f9363c9d96e35dc53c3d3f95002346 lib/galaxy/webapps/galaxy/api/histories.py --- a/lib/galaxy/webapps/galaxy/api/histories.py +++ b/lib/galaxy/webapps/galaxy/api/histories.py @@ -11,7 +11,7 @@ class HistoriesController( BaseAPIController, UsesHistoryMixin ): - @web.expose_api + @web.expose_api_anonymous def index( self, trans, deleted='False', **kwd ): """ GET /api/histories @@ -42,7 +42,7 @@ trans.response.status = 500 return rval - @web.expose_api + @web.expose_api_anonymous def show( self, trans, id, deleted='False', **kwd ): """ GET /api/histories/{encoded_history_id} 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