feat(xo-server/getBackupNgLogs): expose proxyId

Follow up on b454b4dff
This commit is contained in:
Julien Fontanet
2021-04-15 11:30:28 +02:00
parent 37f8ac9da9
commit e8f2934534

View File

@@ -59,6 +59,7 @@ const taskTimeComparator = ({ start: s1, end: e1 }, { start: s2, end: e2 }) => {
// jobId?: string,
// jobName?: string,
// message?: 'backup' | 'metadataRestore' | 'restore',
// proxyId?: string,
// scheduleId?: string,
// start: number,
// status: 'pending' | 'failure' | 'interrupted' | 'skipped' | 'success',
@@ -88,6 +89,7 @@ export default {
jobId,
jobName: data.jobName,
message: 'backup',
proxyId: data.proxyId,
scheduleId,
start: time,
status: runningJobs[jobId] === id ? 'pending' : 'interrupted',