- 세션 타이머·유휴 자동 로그아웃 기능 추가

- 만료 직전 연장 확인 모달, PortalProperty로 시간 설정
- PTL_USER_SESSION 기반 세션 검증 필터/API 도입
- 로그인 시 중복 세션 강제 로그아웃 처리
- 세션 테이블 DDL 및 로그인 안내 메시지 추가

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Rinjae
2026-06-19 17:45:37 +09:00
parent fe4b176512
commit 7265ad6589
18 changed files with 791 additions and 17 deletions
+23
View File
@@ -5310,6 +5310,29 @@ select.form-control {
right: -20px;
}
}
.session-timer {
display: inline-flex;
align-items: center;
gap: 4px;
white-space: nowrap;
font-size: 14px;
font-weight: 600;
color: #64748B;
}
.session-timer .session-timer-icon {
font-size: 12px;
color: #64748B;
}
.session-timer .session-timer-text {
font-variant-numeric: tabular-nums;
min-width: 40px;
text-align: center;
}
.session-timer .session-timer-text.session-timer-warning {
color: #e03131;
font-weight: 700;
}
.data-table {
width: 100%;
background: #FFFFFF;
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long