[Feature] 세션 자동 만료 체크 및 토큰 관리 API (ADM-03) #38
Labels
No Label
Priority
High
Priority
Low
Priority
Medium
Priority
Non
Priority
Urgent
Status
Available
Status
Done
Status
In Progress
Type
Bug
Type
Chore
Type
Design
Type
Documentation
Type
Feature
Type
Improvement
Type
Refactor
Type
Research
Type
Task
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: SPMS/SPMS_API#38
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
설명
세션 자동 만료 체크 및 토큰 관리 API를 구현한다.
상세 프로세스
구현 범위
API 엔드포인트
POST /v1/in/auth/token/refresh- 토큰 갱신 (보안등급 1)POST /v1/in/auth/logout- 로그아웃 (보안등급 2)체크리스트
Application Layer
SPMS.Application/DTOs/Auth/TokenRefreshRequestDto.cs— 토큰 갱신 요청 DTOSPMS.Application/DTOs/Auth/TokenRefreshResponseDto.cs— 토큰 갱신 응답 DTOSPMS.Application/DTOs/Auth/LogoutRequestDto.cs— 로그아웃 요청 DTOSPMS.Application/Interfaces/IAuthService.cs— RefreshTokenAsync, LogoutAsync 추가SPMS.Application/Services/AuthService.cs— 토큰 갱신, 로그아웃 로직 구현Infrastructure Layer
SPMS.Infrastructure/Auth/JwtService.cs— Refresh Token 검증 로직 (선택)API Layer
SPMS.API/Controllers/AuthController.cs— token/refresh, logout 엔드포인트 추가검증
관련 문서
Documents/Feature_Spec.md— ADM-03Documents/API_Specification.md— API_SPMS_02_AUTH_05, API_SPMS_02_AUTH_06