Skip to content

Commit

Permalink
fix/#109 PUT /skills/effects API 저장 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
duddn2012 committed Jul 14, 2024
1 parent 5ece771 commit c50d1c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ private ResponseEntity<List<SkillEffectGetResponse>> findAllSkillEffects() {
return ResponseEntity.ok(response);
}

@PutMapping
@PutMapping("/effects")
private ResponseEntity<Void> updateSkillEffect(@RequestBody SkillEffectUpsertRequest dto) {
skillEffectService.update(dto);
return ResponseEntity.noContent().build();
Expand Down

0 comments on commit c50d1c9

Please sign in to comment.