Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
public class ApiCheckLoginFilter extends CheckLoginFilter {

@Override
protected boolean isPathToSkip(String path) {
return super.isPathToSkip(path)
|| (path.startsWith("jbrowse") && !path.startsWith("jbrowse2"))
|| path.startsWith("profileSet");
protected boolean isGuestUserAllowed(String path) {
if ((path.startsWith("jbrowse") && !path.startsWith("jbrowse2")) || path.startsWith("profileSet")) {
return false;
}
return super.isGuestUserAllowed(path);
}

}