
org.molgenis.ui.MolgenisRootController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-core-ui Show documentation
Show all versions of molgenis-core-ui Show documentation
Spaghetti module containing core plugins and legacy UI components.
package org.molgenis.ui;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* Redirects '/' to the active plugin in the main menu
*/
@Controller
@RequestMapping("/")
public class MolgenisRootController
{
@RequestMapping(method =
{ RequestMethod.GET, RequestMethod.POST })
public String index()
{
return "forward:" + MolgenisMenuController.URI;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy