Skip to content

Commit

Permalink
[test] isRegistered 관련없이 진행할 수 있도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
khyojun committed Nov 11, 2024
1 parent c60a3b5 commit f9a06d3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public void afterRealjoin(JoinRequestDto joinRequestDto, CustomUserDetails user)

User findUser = userRepository.findByNickname(nickname)
.orElseThrow(() -> new JoinException("유저가 존재하지 않습니다."));
if(Boolean.FALSE.equals(findUser.getFirstLogined()))
findUser.toggleLogined();
// GitbalApiDto gitbalApiDto = GitbalApiDto.of(userService.calculateUserScore(nickname));
// if(Boolean.FALSE.equals(findUser.getFirstLogined()))
// findUser.toggleLogined();
// // GitbalApiDto gitbalApiDto = GitbalApiDto.of(userService.calculateUserScore(nickname));

//loginRequestDto 학교이름, 지역이름, 프로필 이미지 이름
UserDto userDto = initUserDto(joinRequestDto, nickname);
Expand Down

0 comments on commit f9a06d3

Please sign in to comment.