We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a90101 commit d29a7f0Copy full SHA for d29a7f0
lib/galaxy/webapps/galaxy/services/users.py
@@ -203,7 +203,7 @@ def get_index(
203
f_any: Optional[str],
204
) -> List[MaybeLimitedUserModel]:
205
# never give any info to non-authenticated users
206
- if not trans.user:
+ if not trans.user and not trans.user_is_bootstrap_admin:
207
raise glx_exceptions.AuthenticationRequired("Only registered users can view the list of users")
208
209
# check for early return conditions
0 commit comments