Class ProjectTemplateController
java.lang.Object
net.n2oapp.framework.sandbox.templates.ProjectTemplateController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetNewProjectFiles(String oldTag, String newTag) getProject(String projectId) searchProjectMatches(String text)
-
Constructor Details
-
ProjectTemplateController
public ProjectTemplateController()
-
-
Method Details
-
getProjectTemplates
-
getProject
@CrossOrigin(origins="*") @GetMapping("/project/{projectId}") public ProjectModel getProject(@PathVariable("projectId") String projectId) -
searchProjectMatches
@CrossOrigin(origins="*") @GetMapping("/project/search") public List<SearchProjectModel> searchProjectMatches(@RequestParam(name="q") String text) throws URISyntaxException, IOException - Throws:
URISyntaxExceptionIOException
-
getNewProjectFiles
@CrossOrigin(origins="*") @GetMapping("/projects-diff") public ProjectsDiffResponse getNewProjectFiles(@RequestParam(name="oldTag") String oldTag, @RequestParam(name="newTag") String newTag)
-