Skip to content

Commit 718b1a9

Browse files
authored
Merge pull request #361 from mosu-dev/refactor/mosu-360
MOSU-360 refactor: 문의 답변 시 "관리자" 고정적으로 명시
2 parents c8c22ba + 837c739 commit 718b1a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/life/mosu/mosuserver/presentation/inquiry/dto/InquiryAnswerRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public InquiryAnswerJpaEntity toEntity(Long postId, UserJpaEntity user) {
2121
.title(title)
2222
.content(content)
2323
.userId(user.getId())
24-
.author(user.getName())
24+
.author("관리자")
2525
.build();
2626
}
2727
}

0 commit comments

Comments
 (0)