Skip to content

Commit

Permalink
Merge pull request #128 from Open-Eye-Im-Developer/develop
Browse files Browse the repository at this point in the history
[MERGE] develop을 main에 반영
  • Loading branch information
JIN-076 committed Feb 21, 2024
2 parents 6edf79b + 1a07b48 commit 5edca0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public CursorPaginationResult<UserPublicApiResponse> findByConditionWithPaginati
profileCard.getUser().getGithubUrl(),
profileCard.getUser().getBio(),
profileCard.getUser().getJandiRate(),
profileCard.getUser().getAchievement().getTitle(),
profileCard.getUser().getAchievement() != null ? profileCard.getUser().getAchievement().getTitle() : null,
profileCard.getUser().getUserDevelopLanguageTags().stream().map(
UserDevelopLanguageTag::getDevelopLanguage).map(String::valueOf).toList(),
profileCard.getUser().getUserWantedJobTags().stream().map(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public CursorPaginationResult<ProjectDetailAPIRes> findByConditionWithPagination
project.getCreator().getGithubUrl(),
project.getCreator().getBio(),
project.getCreator().getJandiRate(),
project.getCreator().getAchievement().getTitle(),
project.getCreator().getAchievement() != null ? project.getCreator().getAchievement().getTitle() : null,
project.getCreator().getUserDevelopLanguageTags().stream().map(
UserDevelopLanguageTag::getDevelopLanguage).map(String::valueOf).toList(),
project.getCreator().getUserWantedJobTags().stream().map(
Expand Down

0 comments on commit 5edca0a

Please sign in to comment.