Skip to content

Commit

Permalink
#45 - 패스워드 인코더가 인식할 수 있게 패스워드 정보 수정
Browse files Browse the repository at this point in the history
앞머리에 `{encoding-info}`와 같이 암호화 정보를 넣어줌 그래야 패스워드 인코더가 읽을 수 있다.
  • Loading branch information
GGHDMS committed Feb 13, 2023
1 parent ce8346c commit 968f24c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project-board/src/main/resources/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
-- TODO: 테스트용이지만 비밀번호가 노출된 데이터 세팅. 개선하는 것이 좋을 지 고민해 보자.
insert into user_account (user_id, user_password, nickname, email, memo, created_at, created_by, modified_at,
modified_by)
values ('hsm', 'asdf1234', 'Hsm', 'hsm@mail.com', 'I am Hsm.', now(), 'hsm', now(), 'hsm')
values ('hsm', '{noop}asdf1234', 'Hsm', 'hsm@mail.com', 'I am Hsm.', now(), 'hsm', now(), 'hsm')
;
insert into user_account (user_id, user_password, nickname, email, memo, created_at, created_by, modified_at,
modified_by)
values ('hsm2', 'asdf1234', 'Hsm2', 'hsm2@mail.com', 'I am Hsm2.', now(), 'hsm2', now(), 'hsm2')
values ('hsm2', '{noop}asdf1234', 'Hsm2', 'hsm2@mail.com', 'I am Hsm2.', now(), 'hsm2', now(), 'hsm2')
;

insert into article (user_id, title, content, hashtag, created_by, modified_by, created_at, modified_at)
Expand Down

0 comments on commit 968f24c

Please sign in to comment.