-
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.
feat/dummy-1: 서버 재시작마다 자동으로 dummyData가 생성됨 (#179)
* fix/community-1: 게시글 조회 응답 DTO에 댓글 갯수를 표시한다. - 단일 게시글 조회 시 / 게시글 그룹별 조회 시 댓글 갯수는 응답 DTO에 포함된다. * fix/community-2: 댓글 조회시 본인이 종속되어 있는 게시글의 정보가 응답 DTO에 포함된다. - 8/10 이후에 응답 DTO 초기값 정할 지 여부 결정 예정 * fix/member-1: 회원정보 각각의 필드값에 따른 수정을 가능하게 하자 - Set형태였던 hobbies, languages들을 null 값이 아닐 때에만 수정이 들어가며 null일 때에는 기존 값들이 들어가도록 함 - 기존의 /id API로 들어갔던 수정 메서드를 토큰 인증을 이용한 API로 수정함 * feat/dummy-1: 서버 재시작마다 자동으로 dummyData가 생성됨 - application.yml: - defer-datasource-initialization:true: - 데이터베이스 초기화를 지연시키는 옵션. JPA 엔티티를 데이터베이스 스키마에 매핑하기 전에 SQL 스크립트를 실행할 수 있게 하기 위함 - sql-init-mode:always: - SQL 스크립트를 실행하게 하기 위함 - import.sql: - 회원 5명, 게시글 각 게시판 별 5개씩 생성해놓음 - 이때 쿼리문에서는 비밀번호를 Encode할 수 없기 때문에 encode된 비밀번호를 넣어줌 - 게시글은 생성일 기준으로 나열되는 부분이 존재하기 때문에 CREATED 값을 NOW()로 넣어줌 - 추후 테스트 코드 활용을 위해 test 디렉토리의 application.yml에도 설정 값을 넣어줌 * feat/dummy-2: 게시글 관련 Dummy 데이터 추가 & 댓글 생성 시 알림 가도록 - 사용자 관련 Dummy 데이터 추가: - 사용자 관련 language, hobby 데이터 추가 - 알림 토큰 Dummy 데이터 추가: - 모든 사용자의 notification_token 추가 - 게시글 관련 Dummy 데이터 추가: - 게시글 댓글 / 대댓글 데이터 추가 - 게시글/댓글 좋아요 추가 - CommentService: - 본인이 작성한 게시글에 댓글이 달린다면 글쓴이에게 알림이 가도록 - 대댓글 작성이라면 게시글/댓글 글쓴이 모두에게 알림이 가도록 * feat/dummy-3: 어노테이션 되돌려놓기 - @manytomany의 기본이 FETCH.EAGER이라 착각함 - 불필요해진 옵션 값 취소 * feat/dummy-4 : 피드백 반영 - Dummy Data를 작성했던 application.yml 부분을 local로 빼서 각자의 local에 DummyData가 들어가도록 한다. - 알림은 Username이 들어가도록 한다. - 빠져있던 Expo 서버로 알림이 가는 요청을 서비스단에 추가해놓는다. * feat/dummy-5 : 알림 서비스 코드 개선 - 알림 전송하는 부분에서 서비스별로 겹치는 코드가 많이 존재했다. 이를 NotificationService에 메서드(addNotifications)를 추가해 공통 코드를 줄임 - 주요 부분은 모두에게 알림이 전송되어야 하는 CONNECT를 제외하고 본인인지 여부를 검사한 후 아닌 경우에 알림을 전송함 - Notification 엔티티 수정 : - 알림읽음 상태의 경우 엔티티를 삭제하기 때문에 무의미해진 isRead 필드값 삭제
- Loading branch information
Showing
13 changed files
with
243 additions
and
69 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
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
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
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
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
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
Oops, something went wrong.