Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
필요없는 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Mar 3, 2024
1 parent 3e4d6d7 commit 4b8755d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.example.daemawiki.domain.auth.dto.request.SignupRequest;
import com.example.daemawiki.domain.document.component.CreateDocumentByUser;
import com.example.daemawiki.domain.document.repository.DocumentRepository;
import com.example.daemawiki.domain.file.model.DefaultProfile;
import com.example.daemawiki.domain.mail.repository.AuthMailRepository;
import com.example.daemawiki.domain.user.model.User;
Expand All @@ -26,17 +25,15 @@ public class Signup {
private final GetMajorType getMajorType;
private final CreateDocumentByUser createDocumentByUser;
private final DefaultProfile defaultProfile;
private final DocumentRepository documentRepository;

public Signup(UserRepository userRepository,AuthMailRepository authMailRepository, PasswordEncoder passwordEncoder, Scheduler scheduler, GetMajorType getMajorType, CreateDocumentByUser createDocumentByUser, DefaultProfile defaultProfile, DocumentRepository documentRepository) {
public Signup(UserRepository userRepository,AuthMailRepository authMailRepository, PasswordEncoder passwordEncoder, Scheduler scheduler, GetMajorType getMajorType, CreateDocumentByUser createDocumentByUser, DefaultProfile defaultProfile) {
this.userRepository = userRepository;
this.authMailRepository = authMailRepository;
this.passwordEncoder = passwordEncoder;
this.scheduler = scheduler;
this.getMajorType = getMajorType;
this.createDocumentByUser = createDocumentByUser;
this.defaultProfile = defaultProfile;
this.documentRepository = documentRepository;
}

public Mono<Void> execute(SignupRequest request) {
Expand Down

0 comments on commit 4b8755d

Please sign in to comment.