From f22b99978a1e2285e89bba15c87cc2c5a5b41d33 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 54f1fba3ffe7..5fb00463be25 100644 --- a/lib/tool_shed/webapp/api/users.py +++ b/lib/tool_shed/webapp/api/users.py @@ -52,7 +52,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 @@ -67,7 +67,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}