From 7f4bb4f390e05f94814fefdee5230a86ba3a39f1 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Sun, 11 Aug 2024 19:56:42 -0400 Subject: [PATCH] Restore session free acccess broken with... https://github.com/galaxyproject/galaxy/commit/12b34ff47c3e4bb86e2ba5d8813a050c44b506baf --- lib/tool_shed/webapp/api/users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tool_shed/webapp/api/users.py b/lib/tool_shed/webapp/api/users.py index 6371b29b92ae..3658e2a71728 100644 --- a/lib/tool_shed/webapp/api/users.py +++ b/lib/tool_shed/webapp/api/users.py @@ -67,7 +67,7 @@ def __get_value_mapper(self, trans): value_mapper = {"id": trans.security.encode_id} return value_mapper - @web.expose_api_anonymous + @web.expose_api_anonymous_and_sessionless def index(self, trans, deleted=False, **kwd): """ GET /api/users @@ -86,7 +86,7 @@ def index(self, trans, deleted=False, **kwd): user_dicts.append(user_dict) return user_dicts - @web.expose_api_anonymous + @web.expose_api_anonymous_and_sessionless def show(self, trans, id, **kwd): """ GET /api/users/{encoded_user_id}