Skip to content

Commit

Permalink
*prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
kkm06100 committed Aug 20, 2024
1 parent 5d8a9a4 commit 3b89318
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public class StudentSignUpService {
private final PasswordEncoder passwordEncoder;
@Transactional
public TokenResponse execute(SignupRequest request){

// 처음 아이디 만들 때는 비활성화
userFacade.checkUserExists(request.getAccountId());

Expand All @@ -41,8 +40,6 @@ public TokenResponse execute(SignupRequest request){
.build()
);



return jwtTokenProvider.createToken(request.getAccountId());

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class TeacherSignUpService {
private final PasswordEncoder passwordEncoder;
@Transactional
public TokenResponse execute(SignupRequest request){

// 처음 아이디 만들때는 비활성화
userFacade.checkUserExists(request.getAccountId());

Expand All @@ -40,8 +39,6 @@ public TokenResponse execute(SignupRequest request){
.build()
);



return jwtTokenProvider.createToken(request.getAccountId());

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
@RequestMapping("/notification")
@RequiredArgsConstructor
public class NotificationController {

private final NotificationRepositroy notificationRepositroy;

private final NotificationCreateService notificationCreateService;
private final NotificationReadService notificationReadService;
private final NotificationUpdateService notificationUpdateService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import lombok.Getter;

public enum ExceptionCode {

NEED_NOT_FOUND(404,"need not found");

@Getter
Expand Down

0 comments on commit 3b89318

Please sign in to comment.