We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e90703 commit 8860a31Copy full SHA for 8860a31
1 file changed
src/main/java/com/listywave/admin/AdminService.java
@@ -32,7 +32,7 @@ public AdminLoginResponse login(String account, String password) {
32
33
// 암호화 적용으로 인해, 임시로 작성해둔 코드입니다.
34
// 모든 어드민이 암호를 변경하면 if 조건식만 제거합니다.
35
- if (!password.equals("12345")) {
+ if (!password.equals("1234")) {
36
admin.validatePassword(sha256Cipher.encrypt(password)); // 해당 라인은 제거하지 않습니다.
37
}
38
0 commit comments