Skip to content

Commit

Permalink
fix : user save
Browse files Browse the repository at this point in the history
  • Loading branch information
NameIsUser06 committed Jan 5, 2024
1 parent 93e9fe1 commit 9757f11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public ResponseEntity<String> execute(UpdateUserInfoRequest request, MultipartFi
File userFile = user.getFile();
userFile.setPath(fileSaveUtil.save(file));
fileRepository.save(userFile);
userRepository.save(user);
}
userRepository.save(user);
return ResponseEntity.ok("success");
}
}

0 comments on commit 9757f11

Please sign in to comment.