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
4 changes: 2 additions & 2 deletions discvrcore/src/org/labkey/discvrcore/DiscvrCoreModule.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@
import org.labkey.api.util.PageFlowUtil;
import org.labkey.api.view.DeveloperMenuNavTrees;
import org.labkey.api.view.NavTree;
import org.labkey.api.view.PopupDeveloperView;
import org.labkey.api.view.DeveloperMenu;
import org.labkey.api.view.WebPartFactory;

import java.util.Collection;
Expand DownExpand Up@@ -73,7 +73,7 @@ protected void init()
public void doStartup(ModuleContext moduleContext)
{
AdminConsole.addLink(AdminConsole.SettingsLinkType.Management, "site utility actions", DetailsURL.fromString("discvrcore/showUtilityActions.view", ContainerManager.getRoot()).getActionURL());
PopupDeveloperView.registerMenuProvider((c, user, trees) -> {
DeveloperMenu.registerMenuProvider((c, user, trees) -> {
trees.add(DeveloperMenuNavTrees.Section.tools, new NavTree("Show Utility Actions", DetailsURL.fromString("discvrcore/showUtilityActions.view", c).getActionURL()));
});
}
Expand Down