-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Merge] main <- hyungjun url 컴포넌트 경로 수정, repository 수정
[Fix] url 컴포넌트 profilephoto 경로 수정, repsitory 경로 수정
- Loading branch information
Showing
7 changed files
with
19 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 9 additions & 2 deletions
11
src/main/java/me/snaptime/profile/repository/ProfileRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
package me.snaptime.profile.repository; | ||
|
||
public interface ProfileRepository { | ||
import me.snaptime.profile.dto.res.AlbumSnapResDto; | ||
import me.snaptime.profile.dto.res.ProfileTagSnapResDto; | ||
import me.snaptime.user.domain.User; | ||
|
||
// 프로필 repo 로직을 이쪽으로 옮겨주세요. UserCustomRepository를 UserRepository와 분리하면 될거같습니다. | ||
import java.util.List; | ||
|
||
public interface ProfileRepository{ | ||
|
||
List<AlbumSnapResDto> findAlbumSnap(User targetUser, Boolean checkPermission); | ||
List<ProfileTagSnapResDto> findTagSnap(User reqUser); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
src/main/java/me/snaptime/user/repository/UserCustomRepository.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters