Conversation
feat: 스터디 설정 및 관리 기능 구현 (정보 수정, 위임, 해체)
utact
approved these changes
Mar 9, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🚀 작업 배경
문제 풀이 직후 GitHub 웹훅 워커에서 AI 코드 분석을 자동 생성하던 구조는 실제 조회하지 않는 제출까지 분석을 수행해 비용과 처리 시간을 낭비하고 있었습니다.
또한 자동 분석이 실패한 경우 기존 UI 흐름에서는 해당 기록이 다시 분석되지 않을 수 있었고, 관리자 관전 모드나 같은 스터디 내 공유 대시보드처럼 타인의 풀이를 보는 흐름과 AI 분석 권한 정책도 맞지 않았습니다.
이번 작업은 AI 코드 분석을 사용자가 상세 기록을 열 때 생성하는 온디맨드 방식으로 전환하고, 그에 맞춰 대시보드 사이드바/권한 처리/UI 문구를 정리하기 위해 진행했습니다.
🛠️ 주요 변경 사항
POST /api/ai/review를algorithmRecordId기반 온디맨드 분석 생성 흐름으로 전환GET /api/ai/review/{algorithmRecordId}조회 시 인증 및 권한 검증 적용본인 / 같은 스터디 멤버 / 관리자까지 허용하도록 확장AnalysisSidebar에서 기록 클릭 시DashboardRecordCard호버 미리보기 제거 후 카드 UI와 문구를 더 단순한 형태로 정리.gitattributes) 정리🔗 관련 이슈