Skip to content

Commit

Permalink
Merge pull request #116 from noah0504789/feature-message-pattern
Browse files Browse the repository at this point in the history
Feat: Add Message Patterns for Email Authentication Tokens
  • Loading branch information
noah0504789 authored Aug 1, 2023
2 parents 630f268 + 69655f4 commit 6c44f13
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/main/resources/sql/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,12 @@ INSERT IGNORE INTO LANGUAGE (LOCALE, MESSAGE_KEY, MESSAGE_CONTENT) VALUES
('en', 'email_duplication','This email already exists : {0}'),
('ko', 'email_duplication','이미 존재하는 이메일입니다 : {0}'),
('en', 'invalid_password','The password you requested is invalid : {0}'),
('ko', 'invalid_password','유효하지 않은 비밀번호 입니다 : {0}')
('ko', 'invalid_password','유효하지 않은 비밀번호 입니다 : {0}'),

('en', 'expired_token','The token has expired'),
('ko', 'expired_token','만료된 토큰입니다'),
('en', 'authenticated_token','The token already confirmed'),
('ko', 'authenticated_token','이미 인증된 토큰입니다'),
('en', 'ungenerated_token','The token is not a normal generated by the server'),
('ko', 'ungenerated_token','서버에 의해 생성된 정상 토큰이 아닙니다')
;

0 comments on commit 6c44f13

Please sign in to comment.