feat: add admin visit request deletion

This commit is contained in:
unknown
2026-07-20 18:55:28 +09:00
parent 85f94ba4f2
commit e4caed8773
6 changed files with 77 additions and 7 deletions

View File

@@ -6,6 +6,7 @@ import { formatDateTime } from '../status';
const ACTION_LABEL: Record<AuditLog['action'], string> = {
APPROVE: '승인',
REJECT: '반려',
DELETE: '삭제',
BLACKLIST_ADD: '블랙리스트 등록',
BLACKLIST_REMOVE: '블랙리스트 해제',
ADMIN_CONFIG_UPDATE: '시스템 설정',
@@ -14,6 +15,7 @@ const ACTION_LABEL: Record<AuditLog['action'], string> = {
const ACTION_CLASS: Record<AuditLog['action'], string> = {
APPROVE: 'green',
REJECT: 'red',
DELETE: 'red',
BLACKLIST_ADD: 'red',
BLACKLIST_REMOVE: 'gray',
ADMIN_CONFIG_UPDATE: 'blue',