Class UserController

java.lang.Object
org.bh_foundation.e_sign.controllers.UserController

@RestController @RequestMapping("/api/users") public class UserController extends Object
  • Constructor Details

    • UserController

      public UserController(UserService userService)
  • Method Details

    • get

      @GetMapping("/get") public org.springframework.http.ResponseEntity<?> get()
    • getGet

      @GetMapping("/get-get") public org.springframework.http.ResponseEntity<?> getGet()
    • changePassword

      @PutMapping("/change-password") public org.springframework.http.ResponseEntity<?> changePassword(@RequestParam String old_password, @RequestParam String new_password)
    • updateProfile

      @PutMapping("/update-profile") public org.springframework.http.ResponseEntity<?> updateProfile(@RequestBody User request)