Class ConversationsController
- java.lang.Object
-
- org.sakaiproject.conversations.tool.ConversationsController
-
@Controller public class ConversationsController extends Object
-
-
Constructor Summary
Constructors Constructor Description ConversationsController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringcomment(org.springframework.ui.Model model, String topicId, String postId, String commentId, HttpServletRequest request)StringpageIndex(org.springframework.ui.Model model, HttpServletRequest request)Stringpost(org.springframework.ui.Model model, String topicId, String postId, HttpServletRequest request)Stringtopic(org.springframework.ui.Model model, String topicId, HttpServletRequest request)
-
-
-
Method Detail
-
pageIndex
@GetMapping({"/","/index"}) public String pageIndex(org.springframework.ui.Model model, HttpServletRequest request)
-
topic
@GetMapping("/topics/{topicId}") public String topic(org.springframework.ui.Model model, @PathVariable String topicId, HttpServletRequest request)
-
post
@GetMapping("/topics/{topicId}/posts/{postId}") public String post(org.springframework.ui.Model model, @PathVariable String topicId, @PathVariable String postId, HttpServletRequest request)
-
comment
@GetMapping("/topics/{topicId}/posts/{postId}/comments/{commentId}") public String comment(org.springframework.ui.Model model, @PathVariable String topicId, @PathVariable String postId, @PathVariable String commentId, HttpServletRequest request)
-
-