-
Notifications
You must be signed in to change notification settings - Fork 1
Fix(client): FCM 로직 수정 #182
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
17 commits
Select commit
Hold shift + click to select a range
4c7ae0b
feat: 알람 추가설정 제아
jllee000 67c390a
feat: 알람 추가 설정 및 토큰재발급 수정
jllee000 883c486
feat: 키 연결 및 cdn 임포트
jllee000 18294aa
chore: 머지 충돌 수정
jllee000 61b280c
fix: 서비스워커 경로 설정 수정
jllee000 1cc44a8
feat: FCM 커스텀
jllee000 0384964
feat: 리마인드 시간 기준 UST에서 KST
jllee000 9a6854b
feat: FCM 알람 아이콘 변경
jllee000 4d153f7
chore: 빌드에러 수정
jllee000 9945133
feat: FCM 푸시 랜딩 기능 추가
jllee000 0a751fc
chore: 머지 충돌 수정
jllee000 2f851bf
Merge branch 'develop' into fix/#161/fcm-setting-edit
jllee000 836541d
fix: fcm 로직 원복
jllee000 30d8906
Merge remote-tracking branch 'origin/develop' into fix/#161/fcm-setti…
jllee000 a47dfb4
feat: fcm 랜딩 기능 추가
jllee000 9354d2a
feat: fcm 알람 코드 구조 수정
jllee000 cffe9d1
chore: 머지 충돌 수정
jllee000 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.
URL 검증 누락으로 인한 보안 취약점
payload.data?.url에서 추출된 URL을 검증 없이 사용하고 있습니다. 악의적인 FCM 메시지가javascript:,data:, 또는 기타 위험한 스킴을 포함한 URL을 전달할 수 있어 클릭 시 XSS 공격에 노출될 수 있습니다.다음 diff를 적용하여 URL 스킴을 검증하세요:
📝 Committable suggestion
🤖 Prompt for AI Agents