1

change index.html

This commit is contained in:
tomvahl
2020-03-06 14:21:43 +01:00
parent 18412accf8
commit c5b970ffc9
4 changed files with 104 additions and 2 deletions

View File

@ -53,4 +53,14 @@ public class Gruppen2Controller {
System.out.println(gruppe);
return "redirect:/";
}
@GetMapping("/createGroup")
public String createGruppe(){
return "test";
}
@GetMapping("/findGroup")
public String findGruppe(){
return "search";
}
}