게시물 export 진행도 표시 추가 v1.5.21
This commit is contained in:
@@ -39,12 +39,16 @@ const mapPostExportJobRow = (row) => ({
|
||||
status: row.status,
|
||||
scope: row.scope,
|
||||
postCount: Number(row.post_count || 0),
|
||||
processedCount: Number(row.processed_count || 0),
|
||||
currentPartIndex: row.current_part_index ? Number(row.current_part_index) : null,
|
||||
chunkSize: Number(row.chunk_size || DEFAULT_CHUNK_SIZE),
|
||||
retentionDays: Number(row.retention_days || DEFAULT_RETENTION_DAYS),
|
||||
expiresAt: row.expires_at ? row.expires_at.toISOString() : null,
|
||||
message: row.message || '',
|
||||
progressMessage: row.progress_message || '',
|
||||
createdAt: row.created_at.toISOString(),
|
||||
updatedAt: row.updated_at.toISOString(),
|
||||
startedAt: row.started_at ? row.started_at.toISOString() : null,
|
||||
completedAt: row.completed_at ? row.completed_at.toISOString() : null,
|
||||
files: row.files || []
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user