기능검증 중

This commit is contained in:
2026-01-11 12:59:21 +09:00
parent d4620dc1fa
commit 1f9745fdfc
14 changed files with 2000 additions and 88 deletions

View File

@@ -50,7 +50,14 @@ export default defineEventHandler(async (event) => {
createdAt: employee.created_at,
createdIp: employee.created_ip,
updatedAt: employee.updated_at,
updatedIp: employee.updated_ip
updatedIp: employee.updated_ip,
// 계정 관련 필드
hasPassword: !!employee.password_hash,
googleId: employee.google_id,
googleEmail: employee.google_email,
googleLinkedAt: employee.google_linked_at,
lastLoginAt: employee.last_login_at,
lastLoginIp: employee.last_login_ip
},
loginHistory: loginHistory.map(h => ({
historyId: h.history_id,