Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SAK-50779 LTI Stealth tools nav placements deleted from Site Info when not accessible #13128

Merged
merged 1 commit into from
Dec 21, 2024
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 @@ -6751,7 +6751,7 @@ private List<MyTool> getLtiToolGroup(String groupName, File moreInfoDir, Site si
if ( site != null ) siteId = Objects.toString(site.getId(), "");

if ( requireCourseNavPlacement ) {
allTools = ltiService.getToolsLaunchCourseNav(siteId, true);
allTools = ltiService.getToolsLaunchCourseNav(siteId, false);
} else {
allTools = ltiService.getToolsLaunch(siteId, true);
}
Expand Down Expand Up @@ -6809,7 +6809,6 @@ public int compare(MyTool t1, MyTool t2) {
}
});
return ltiTools;

}


Expand Down
Loading