Skip to content

Commit d29a7f0

Browse files
committed
All bootstrap admin users to retrieve basic user list
1 parent 6a90101 commit d29a7f0

File tree

1 file changed

+1
-1
lines changed
  • lib/galaxy/webapps/galaxy/services

1 file changed

+1
-1
lines changed

lib/galaxy/webapps/galaxy/services/users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def get_index(
203203
f_any: Optional[str],
204204
) -> List[MaybeLimitedUserModel]:
205205
# never give any info to non-authenticated users
206-
if not trans.user:
206+
if not trans.user and not trans.user_is_bootstrap_admin:
207207
raise glx_exceptions.AuthenticationRequired("Only registered users can view the list of users")
208208

209209
# check for early return conditions

0 commit comments

Comments
 (0)