basic theme selection

This commit is contained in:
Jottyfan
2023-12-16 17:59:15 +01:00
parent 690f28f4fe
commit bff5d1e54f
10 changed files with 625 additions and 3 deletions

View File

@ -0,0 +1,20 @@
package de.jottyfan.bico.modules.subject;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import de.jottyfan.bico.modules.CommonController;
/**
*
* @author jotty
*
*/
@Controller
public class SubjectController extends CommonController {
@GetMapping("/subject/new")
public String loadNewSubjectForm() {
return "/subject/new";
}
}