-
Notifications
You must be signed in to change notification settings - Fork 2
Dev to main #58
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
Dev to main #58
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
e967fc7
[feat] apple 제공된 닉네임 없을 경우 랜덤 생성
GoGangH 57dc623
[feat] created_at으로 인덱싱 생성 후 쿼리 조회
GoGangH df00425
fix: 탈퇴한 유저 재가입 시 바로 이전 삭제되었던 정보로 재가입
GoGangH 317265b
fix: order by 임시 제거 후 python 정렬로 임시 저장 -> *추후 변경 필요
GoGangH e0e7fd3
fix: tag 괄호 삭제
GoGangH e3a099a
fix: tag 2개 고정
GoGangH 9559fb4
[FIX] 경험 조회 시 최신 순으로 내림차순 정렬
s-jiun bddbf36
[FIX] Qdrant 애러 핸들러 추가 및 페이지네이션 offset 수정
s-jiun c3bf053
[FIX] Qdrant timezone 이슈 수정
s-jiun a890cfd
[FIX] 경험 조회 시 최신 순으로 내림차순 정렬 (#56)
s-jiun b78508e
[fix] 모델 추가를 통한 시간 단축
leegaarden 34a6012
Merge branch 'dev' into fix/chatting
leegaarden e4b2840
[FIX] AI 모델 추가를 통한 시간 단축 (#57)
leegaarden fd2d7c5
[FIX] 글자수 검증 단계 제거
leegaarden 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
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
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
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
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
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: Nexters/Logit-BE
Length of output: 10406
삭제된 계정을 OAuth 로그인 중에 자동으로 복구하면 사용자 탈퇴 정책을 위반합니다.
Lines 131-137에서 이메일로 매칭된 비활성(탈퇴) 계정을 사용자 동의 없이 자동으로 복구합니다.
delete_user()는is_active=False로 설정하여 soft-delete를 구현하지만, OAuth 로그인 시_find_or_create_user()가 이를 자동으로is_active=True로 되돌립니다. 이는 탈퇴한 계정의 모든 데이터에 대한 접근을 사용자 재인증 없이 복구하므로 삭제 정책을 무효화합니다.oauth_provider_id보존은 무료 체험 재발급 방지(사기 차단)이지, 자동 계정 복구 권한이 아닙니다. 명시적인 사용자 재가입 또는 재활성화 흐름을 거치도록 수정하세요.🤖 Prompt for AI Agents