feat: add Node ACS admin workflows

This commit is contained in:
unknown
2026-07-16 11:00:09 +09:00
parent a25872394a
commit c6f342a861
24 changed files with 3442 additions and 266 deletions

View File

@@ -8,6 +8,7 @@ const ACTION_LABEL: Record<AuditLog['action'], string> = {
REJECT: '반려',
BLACKLIST_ADD: '블랙리스트 등록',
BLACKLIST_REMOVE: '블랙리스트 해제',
ADMIN_CONFIG_UPDATE: '시스템 설정',
};
const ACTION_CLASS: Record<AuditLog['action'], string> = {
@@ -15,6 +16,7 @@ const ACTION_CLASS: Record<AuditLog['action'], string> = {
REJECT: 'red',
BLACKLIST_ADD: 'red',
BLACKLIST_REMOVE: 'gray',
ADMIN_CONFIG_UPDATE: 'blue',
};
export const AuditLogPage: React.FC = () => {