Skip to content

Commit

Permalink
Merge pull request #253 from haedoang/feature/report
Browse files Browse the repository at this point in the history
fix: bug fix
  • Loading branch information
haedoang authored Dec 26, 2023
2 parents 1b12ef6 + 9ab7ea3 commit d6da3ec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import com.koliving.api.base.ServiceError;
import com.koliving.api.base.exception.KolivingServiceException;
import com.koliving.api.email.EmailService;
import com.koliving.api.email.IEmailService;
import com.koliving.api.properties.FrontProperties;
import com.koliving.api.report.application.dto.ReportReasonResponse;
import com.koliving.api.report.application.dto.ReportRequest;
Expand All @@ -25,7 +26,7 @@
public class ReportService {
private final ReportReasonRepository reportReasonRepository;
private final RoomRepository roomRepository;
private final EmailService emailService;
private final IEmailService emailService;
private final FrontProperties frontProperties;

public List<ReportReasonResponse> getReasons() {
Expand Down

0 comments on commit d6da3ec

Please sign in to comment.