Skip to content

Commit

Permalink
Feat(#40) : private to public
Browse files Browse the repository at this point in the history
  • Loading branch information
versatile0010 committed Oct 23, 2023
1 parent 4415c3a commit 080b82d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public RefreshTokenResponse refresh(RefreshTokenRequest tokenRequest) {
}

@Transactional
private GetTokenResponse getTokenResponse(String email) {
public GetTokenResponse getTokenResponse(String email) {
if (!memberRepository.existsByEmail(email))
memberService.create(email);
if (tokenRepository.existsById(email)) {
Expand Down

0 comments on commit 080b82d

Please sign in to comment.