-
Notifications
You must be signed in to change notification settings - Fork 4
[Feat] Notification 추가 #362
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
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
ef2e84a
feat: gitignore 추가
david-parkk 492f0f6
feat: FCM gradle 추가
david-parkk dda4fe5
feat: 테스트 FCM API 추가
david-parkk 82e3b37
test: 테스트 추가
david-parkk 08e6a1c
feat: 토큰 추가 API
david-parkk 86e966e
feat: baseEntity 상속 추가
david-parkk e49f571
test: 테스트 추가
david-parkk b852f22
Merge branch 'develop' of https://github.com/david-parkk/backend into…
david-parkk 72042b7
fix: gitignore 수정
david-parkk 99b8add
feat: 메서드 분리
david-parkk c4f7ebb
feat: FCM Message 구현체 작성
david-parkk bf382f0
test: 테스트 변경
david-parkk df5dea4
feat: ci submodule 추가
david-parkk 1904df2
fix: Fcm Config 수정
david-parkk 5f5d835
fix: application.yml test 수정
david-parkk 2707594
test: 테스트 추가
david-parkk 4ecfa7c
resolve: take develop submodule pointer for config
kmw10693 a94d0ca
resolve: take develop submodule pointer for config
kmw10693 b018424
fix: 리뷰 반영
david-parkk 2bc9956
Merge branch 'feat/#345' of https://github.com/KU-rum/backend into fe…
david-parkk fa5560b
fix: 리뷰 반영
david-parkk fc8b1ec
fix: 에러 추적 stacktrace 추가
david-parkk d6dc9e7
Merge branch 'develop' of https://github.com/KU-rum/backend into fix/…
david-parkk 3bc3364
fix: FCM gradle
david-parkk df5218c
Merge branch 'develop' of https://github.com/KU-rum/backend into fix/…
david-parkk ae7b373
Merge branch 'develop' of https://github.com/KU-rum/backend into fix/…
david-parkk dee79b9
fix: FCM Function
david-parkk a483d78
Merge branch 'fix/#358' of https://github.com/KU-rum/backend into fix…
david-parkk 363c2db
Merge branch 'develop' into fix/#358
david-parkk 8848940
feat: Notifiction 추가
david-parkk e122148
Merge branch 'fix/#358' of https://github.com/KU-rum/backend into fix…
david-parkk 7960d2c
Merge branch 'develop' of https://github.com/KU-rum/backend into fix/…
david-parkk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: KU-rum/backend
Length of output: 228
🏁 Script executed:
Repository: KU-rum/backend
Length of output: 129
🏁 Script executed:
rg "issue.*358|error.*1404" -i --max-count 20Repository: KU-rum/backend
Length of output: 213
🏁 Script executed:
Repository: KU-rum/backend
Length of output: 6172
🏁 Script executed:
rg "FCM_SEND_ERROR|1404" -B 5 -A 5 src/main/java/ku_rum/backend/global/support/status/BaseExceptionResponseStatus.javaRepository: KU-rum/backend
Length of output: 734
🏁 Script executed:
Repository: KU-rum/backend
Length of output: 139
FCM 알림 페이로드 추가로 시스템 알림 자동 표시 개선
MulticastMessage에 notification 페이로드가 올바르게 추가되었습니다. Notification.builder().setTitle().setBody().build() 패턴은 Firebase Admin SDK의 공식 권장 방식이며, 이를 통해 시스템 알림이 자동으로 표시됩니다. Data 페이로드와 notification 페이로드를 동시에 사용하는 것은 유효한 패턴입니다.
sendToTopic() 메서드(75-80행)도 동일한 패턴으로 일관성 있게 구현되어 있습니다.
🤖 Prompt for AI Agents