Skip to content

Commit

Permalink
refactor(messages): 메시지 오타 및 잘못된 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SongJaeHoonn committed Jan 10, 2025
1 parent 3dca38b commit 7536762
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
@Setter
public class TwoFactorAuthenticationRequestDto {

@NotNull(message = "{notNull.twoFactorAuthenticationRequestDto.memberId}")
@NotNull(message = "{notNull.twoFactorAuthentication.memberId}")
@Schema(description = "학번", example = "202310000", required = true)
private String memberId;

@NotNull(message = "{notNull.twoFactorAuthenticationRequestDto.totp}")
@NotNull(message = "{notNull.twoFactorAuthentication.totp}")
@Schema(description = "TOTP", example = "123456", required = true)
private String totp;
}
6 changes: 3 additions & 3 deletions src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ notNull.report.title=보고서 제목은 필수 입력 항목입니다.
notNull.report.turn=차시는 필수 입력 항목입니다.
notNull.review.activityGroupId=활동 그룹 ID는 필수 입력 항목입니다.
notNull.review.content=내용은 필수 입력 항목입니다.
notNull.schedule.detail=일정 세부하상은 필수 입력 항목입니다.
notNull.schedule.detail=일정 세부사항은 필수 입력 항목입니다.
notNull.schedule.endDate=일정 종료날짜와 시간은 필수 입력 항목입니다.
notNull.schedule.scheduleType=일정 타입은 필수 입력 항목입니다.
notNull.schedule.startDate=일정 시작날짜와 시간은 필수 입력 항목입니다.
Expand All @@ -197,8 +197,8 @@ notNull.sharedAccount.platformUrl=플랫폼 URL은 필수 입력 항목입니다
notNull.sharedAccountUsage.sharedAccountId=공유 계정 식별 ID는 필수 입력 항목입니다.
notNull.sharedAccountUsage.endTime=계정 이용 종료 시간은 필수 입력 항목입니다.
notNull.token.token=토큰은 필수 입력 항목입니다.
notNull.twoFactorAuthenticationRequestDto.memberId=학번은 필수 입력 항목입니다.
notNull.twoFactorAuthenticationRequestDto.totp=인증번호는 필수 입력 항목입니다.
notNull.twoFactorAuthentication.memberId=학번은 필수 입력 항목입니다.
notNull.twoFactorAuthentication.totp=인증번호는 필수 입력 항목입니다.
notNull.verification.memberId=학번은 필수 입력 항목입니다.
notNull.verification.verification=인증 코드는 필수 입력 항목입니다.
notNull.workExperience.companyName=회사명은 필수 입력 항목입니다.
Expand Down

0 comments on commit 7536762

Please sign in to comment.