Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat : 공연 알림 저장 후 조회 구현 #27

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from

Conversation

GaBaljaintheroom
Copy link
Collaborator

😋 작업한 내용

  • 공연 알림 저장
  • 공연 알림 목록 조회
  • 공연 알림 상태 확인

🙏 PR Point

  • 알림 목록 조회 시 안읽은 상태였다면 읽은 상태로 변경합니다.

👍 관련 이슈


@GaBaljaintheroom GaBaljaintheroom self-assigned this Sep 27, 2024
@GaBaljaintheroom GaBaljaintheroom changed the base branch from prod to develop September 27, 2024 06:34
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Table(name = "show_alarm")
public class ShowAlarm extends BaseEntity {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리뷰 포인트: 5
showId 있어야 해요!

);
}

@GetMapping("/activate")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리뷰 포인트: 2
activate는 뭔가 활성화 상태...인 거 같아서, 화면단에서 활성화 되어 있단 의미를 많이 주는 거 같아요
unread 같은 걸로, row의 상태를 판별하는 건 어때요?

private String content;

@Column(name = "checked", nullable = false)
private boolean checked;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리뷰 포인트: 3
checked 변수가 뭔지 몰랐어요..! boolean 느낌이 안 나서... isRead, hasRead 같은 걸로 가능할까욥?

include (":app:domain:common-domain")

include (":app:infrastructure")
include (":app:infrastructure:fcm")
include (":app:batch")

include 'app:api:alarm-api'
findProject(':app:api:alarm-api')?.name = 'alarm-api'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리뷰 포인트: 1
오 요건 뭐에요?? 처음보는데, 코틀린 elvis 연산자 같기도 하고..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: 공연 알림 저장 및 조회
2 participants