Last active
September 15, 2018 22:08
-
-
Save spati-java/23607a5cb756532bb9701503ff8fac06 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@PutMapping | |
public ResponseEntity updateProfile(@RequestBody ProfileDocument document) throws Exception { | |
return new ResponseEntity(service.updateProfile(document), HttpStatus.CREATED); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment