112. Update profile image service call (#13)

This commit is contained in:
Art
2021-09-12 14:48:20 +03:00
parent 135df16bee
commit bfaf21efe4
2 changed files with 11 additions and 2 deletions

View File

@ -109,7 +109,7 @@ public class UserResource {
}
@PutMapping("{username}/profileImage")
public User updateUser(@PathVariable String username, MultipartFile profileImage) {
public User updateProfileImage(@PathVariable String username, MultipartFile profileImage) {
return userService.updateProfileImage(username, profileImage);
}