feat: 카카오 인증일(kakao_verified_at) 필드 추가

- DB에 kakao_verified_at 컬럼 추가
- link_kakao_identity()에서 최초 연동 시 인증일 기록
- 대시보드 테이블에 실제 인증일 표시
- 기존 카카오 연동 사용자 마이그레이션 완료
This commit is contained in:
thug0bin
2026-02-27 16:31:31 +09:00
parent 159386942e
commit 04b0f3a8ca
2 changed files with 12 additions and 5 deletions

View File

@@ -484,8 +484,8 @@
<td class="points-positive">{{ "{:,}".format(user.mileage_balance) }}P</td>
<td>{{ user.created_at[:16].replace('T', ' ') }}</td>
<td>
{% if user.nickname != '고객' %}
<span style="display: inline-flex; align-items: center; gap: 3px; background: #FEE500; color: #3C1E1E; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 10px;">💬 {{ user.updated_at[:10] if user.updated_at else '-' }}</span>
{% if user.kakao_verified_at %}
<span style="display: inline-flex; align-items: center; gap: 3px; background: #FEE500; color: #3C1E1E; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 10px;">💬 {{ user.kakao_verified_at[:10] }}</span>
{% else %}
<span style="display: inline-flex; align-items: center; background: #f1f3f5; color: #868e96; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 10px;">미인증</span>
{% endif %}