INSPJT / instagram_clone_backend

APIs For Front, AOS, iOS
13 stars 2 forks source link

Release/0.2.0 #124

Closed ParkJiwoon closed 3 years ago

ParkJiwoon commented 3 years ago

테스트: 마지막 커밋에 commit type 안붙여도 제대로 태그 버전 올라가는지 확인

1. 모든 멤버 관련 Response 형식 통일

public class MemberResDto {
    @NotNull
    private String displayId;       // 사용자 아이디
    private String nickname;        // 닉네임
    private String profileImageUrl; // 프로필 이미지 URL
    private String introduction;    // 소개글
    private Long postCount;         // 작성한 글 갯수
    private Long followingCount;    // 팔로잉 수
    private Long followerCount;     // 팔로워 수
    private Boolean isFollowedByMe; // 요청 보낸 계정이 팔로우 중인지
}


2. API 변경


Comment Response


Post Response

codecov[bot] commented 3 years ago

Codecov Report

Merging #124 (a2428bb) into master (5f3d003) will increase coverage by 1.76%. The diff coverage is 98.33%.

Impacted file tree graph

@@             Coverage Diff              @@
##             master     #124      +/-   ##
============================================
+ Coverage     87.53%   89.30%   +1.76%     
  Complexity      162      162              
============================================
  Files            43       41       -2     
  Lines           706      645      -61     
  Branches         13       13              
============================================
- Hits            618      576      -42     
+ Misses           76       58      -18     
+ Partials         12       11       -1     
Impacted Files Coverage Δ
...ramclone/controller/dto/comment/CommentReqDto.java 100.00% <ø> (ø)
...r/yurivongella/instagramclone/entity/MediaUrl.java 91.66% <ø> (+16.66%) :arrow_up:
...la/instagramclone/controller/dto/post/PostDto.java 85.71% <85.71%> (ø)
...tagramclone/controller/dto/comment/CommentDto.java 100.00% <100.00%> (ø)
...ramclone/controller/dto/comment/CommentResDto.java 100.00% <100.00%> (ø)
...nstagramclone/controller/dto/post/MediaUrlDto.java 100.00% <100.00%> (+100.00%) :arrow_up:
...instagramclone/controller/dto/post/PostReqDto.java 100.00% <100.00%> (ø)
...instagramclone/controller/dto/post/PostResDto.java 100.00% <100.00%> (ø)
...a/our/yurivongella/instagramclone/entity/Post.java 94.11% <100.00%> (+1.26%) :arrow_up:
...agramclone/repository/post/PostRepositoryImpl.java 100.00% <100.00%> (ø)
... and 10 more

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 5f3d003...a2428bb. Read the comment docs.