A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
312 B

5 years ago
  1. package org.ros.chatto.controller;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. @Controller
  5. @RequestMapping("/user")
  6. public class UserController {
  7. @RequestMapping
  8. public String viewUserProfile() {
  9. return "user/home";
  10. }
  11. }