GitHub Issue #1087: App Admins cannot view the Schema Browser link from the apps#7620
Merged
cnathe merged 2 commits intorelease26.3-SNAPSHOTfrom Apr 24, 2026
Merged
Conversation
labkey-susanh
approved these changes
Apr 23, 2026
| return hasRootPermissions(TRUSTED_BROWSER_DEV); | ||
| } | ||
|
|
||
| public boolean isTroubleShooter() |
Contributor
There was a problem hiding this comment.
Looks like there aer several other places that could be updated to use this new method as well. No need to do it now, of course, but also seemingly low risk.
Contributor
Author
There was a problem hiding this comment.
I'm adding a note to my todo list to make those updates in develop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale
#1087 App Admins cannot view the Schema Browser link from the apps
This is a companion to limsModules#2143. It adds a isTroubleShooter() convenience method to User.java following the same pattern as isAnalyst(), isBrowserDev(), etc., and then refactors PopupAdminView.java to use it.
This makes user.isTroubleShooter() available as a first-class helper so both the platform code and the limsModules menu providers can use consistent, readable permission checks.
Related Pull Requests
Changes