Open
Conversation
- GET /api/sessions — list active sessions
- GET /api/sessions/{user_id} — get session detail with messages
- DELETE /api/sessions/{user_id} — delete a session
- POST /api/sessions/cleanup — purge old sessions
Closes #73
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Owner
Author
세션 설계 변경 필요현재 구현은 유저당 1개 세션 (
영향 범위
조치이 PR의 엔드포인트 경로와 조회 로직이 채널별 다중 세션 구조에 맞게 수정될 예정입니다. 관련 이슈(#71~#77) 및 플랜을 함께 업데이트합니다. |
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.
Summary
GET /api/sessions— 활성 세션 목록 조회GET /api/sessions/{user_id}— 특정 유저 세션 상세 조회 (message_limit 쿼리 파라미터 지원)DELETE /api/sessions/{user_id}— 특정 유저 세션 삭제POST /api/sessions/cleanup— 오래된 세션 일괄 정리 (hours 파라미터)Closes #73
Test plan
🤖 Generated with Claude Code