Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spring Security 인증/인가 구조 개편 및 GUEST 로그인 도입 완료 #456

Merged
merged 11 commits into from
Aug 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,26 +71,6 @@ public String getPassword() {
return password;
}

@Override
public boolean isAccountNonExpired() {
mingmingmon marked this conversation as resolved.
Show resolved Hide resolved
return true;
}

@Override
public boolean isAccountNonLocked() {
return true;
}

@Override
public boolean isCredentialsNonExpired() {
return true;
}

@Override
public boolean isEnabled() {
return true;
}

public void update(MemberUpdateRequestDto requestDto, PasswordEncoder passwordEncoder) {
Optional.ofNullable(requestDto.getPassword())
.ifPresent(password -> setPassword(passwordEncoder.encode(password)));
Expand Down