Skip to content

Commit

Permalink
Refactor :: edit reportDamage response message
Browse files Browse the repository at this point in the history
  • Loading branch information
priverg committed Oct 17, 2024
2 parents b169337 + 249f860 commit 20d9820
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public BaseResponse reportDamage(DamageCreateRequest request) {
validateDuplicate(request.getCode(), request.getIssueType());
Damage damage = damageMapper.dtoToEntity(request);
damageRepository.save(damage);
return new BaseResponse(HttpStatus.OK, "파손 정보 등록 성공", damage);
return new BaseResponse(HttpStatus.OK, "신고 정보 등록 성공", damage);
}

@Override
Expand Down

0 comments on commit 20d9820

Please sign in to comment.