Pipeline init

This commit is contained in:
Anthony Stirling
2023-06-13 00:32:15 +01:00
parent d5b7125415
commit 0cebe69ff8
3 changed files with 288 additions and 0 deletions

View File

@@ -10,6 +10,13 @@ import io.swagger.v3.oas.annotations.Hidden;
@Controller
public class GeneralWebController {
@GetMapping("/pipeline")
@Hidden
public String pipelineForm(Model model) {
model.addAttribute("currentPage", "pipeline");
return "pipeline";
}
@GetMapping("/merge-pdfs")
@Hidden
public String mergePdfForm(Model model) {