Skip to content

Commit

Permalink
Merge branch 'release_23.2' into release_24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Oct 16, 2024
2 parents 03457df + 63b92e7 commit cfc31bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tool_shed/webapp/api/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}
Expand Down

0 comments on commit cfc31bc

Please sign in to comment.