Skip to content

Commit

Permalink
refactor: Member 관련 파일 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
ymkim97 committed Oct 31, 2023
1 parent 86b2b53 commit 051d56e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import org.springframework.web.util.UriComponentsBuilder;

import com.moabam.api.dto.AuthorizationCodeRequest;
import com.moabam.api.mapper.OAuthMapper;
import com.moabam.api.dto.OAuthMapper;
import com.moabam.global.common.util.GlobalConstant;
import com.moabam.global.config.OAuthConfig;
import com.moabam.global.error.exception.BadRequestException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.moabam.api.domain;
package com.moabam.api.domain.entity;

import static java.util.Objects.*;

Expand All @@ -8,6 +8,7 @@
import org.hibernate.annotations.SQLDelete;
import org.hibernate.annotations.Where;

import com.moabam.api.domain.entity.enums.Role;
import com.moabam.global.common.entity.BaseTimeEntity;
import com.moabam.global.common.util.BaseImageUrl;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.moabam.api.domain;
package com.moabam.api.domain.entity.enums;

public enum Role {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.moabam.api.mapper;
package com.moabam.api.dto;

import com.moabam.api.dto.AuthorizationCodeRequest;
import com.moabam.global.config.OAuthConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.springframework.test.util.ReflectionTestUtils;

import com.moabam.api.dto.AuthorizationCodeRequest;
import com.moabam.api.mapper.OAuthMapper;
import com.moabam.api.dto.OAuthMapper;
import com.moabam.global.common.util.GlobalConstant;
import com.moabam.global.config.OAuthConfig;
import com.moabam.global.error.exception.BadRequestException;
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/com/moabam/api/domain/MemberTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;

import com.moabam.api.domain.entity.Member;
import com.moabam.api.domain.entity.enums.Role;
import com.moabam.global.common.util.BaseImageUrl;

class MemberTest {
Expand Down

0 comments on commit 051d56e

Please sign in to comment.