Skip to content

Commit

Permalink
[refactor][#53] userId 표기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ProtoSeo committed Jul 20, 2022
1 parent 8138a6d commit 53774c8
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,8 @@ public ResponseEntity<String> updateUserProfileImage(@PathVariable Long userId,
return ResponseEntity.ok(userService.updateUserProfileImage(userId, multipartFile));
}

@DeleteMapping("/users/{user_id}/skills/{skill_id}")
public ResponseEntity<CommonResponse> deleteUserSkill(@PathVariable(value = "user_id") Long userId,
@PathVariable(value = "skill_id") Long skillId) {
@DeleteMapping("/users/{userId}/skills/{skillId}")
public ResponseEntity<CommonResponse> deleteUserSkill(@PathVariable Long userId, @PathVariable Long skillId) {
skillTagService.deleteSkillTagToUser(userId, skillId);
return ResponseEntity.ok(new CommonResponse(true, "해당 기술태그가 삭제되었습니다."));
}
Expand Down

0 comments on commit 53774c8

Please sign in to comment.