Skip to content

Commit 52afa61

Browse files
authored
Merge pull request #20575 from mvdbeek/fix_planemo_serve
[24.2] Fix planemo serve, need user list
2 parents 62f6ab3 + d29a7f0 commit 52afa61

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)