New: Output Path column in Queue

This commit is contained in:
Qstick 2019-04-28 00:32:38 -04:00
commit a3e955443d
5 changed files with 20 additions and 0 deletions

View file

@ -32,6 +32,7 @@ namespace Lidarr.Api.V1.Queue
public DownloadProtocol Protocol { get; set; }
public string DownloadClient { get; set; }
public string Indexer { get; set; }
public string OutputPath { get; set; }
public bool DownloadForced { get; set; }
}
@ -63,6 +64,7 @@ namespace Lidarr.Api.V1.Queue
Protocol = model.Protocol,
DownloadClient = model.DownloadClient,
Indexer = model.Indexer,
OutputPath = model.OutputPath,
DownloadForced = model.DownloadForced
};
}

View file

@ -29,6 +29,7 @@ namespace NzbDrone.Core.Queue
public DownloadProtocol Protocol { get; set; }
public string DownloadClient { get; set; }
public string Indexer { get; set; }
public string OutputPath { get; set; }
public string ErrorMessage { get; set; }
public bool DownloadForced { get; set; }
}

View file

@ -89,6 +89,7 @@ namespace NzbDrone.Core.Queue
Protocol = trackedDownload.Protocol,
DownloadClient = trackedDownload.DownloadItem.DownloadClient,
Indexer = trackedDownload.Indexer,
OutputPath = trackedDownload.DownloadItem.OutputPath.ToString(),
DownloadForced = downloadForced
};