1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

New: Output Path column in Queue

Closes #3058
This commit is contained in:
Mark McDowall
2019-04-17 22:39:37 -07:00
parent 4933a75d15
commit 8055b5e5da
5 changed files with 22 additions and 2 deletions
+3 -1
View File
@@ -32,6 +32,7 @@ namespace Sonarr.Api.V3.Queue
public DownloadProtocol Protocol { get; set; }
public string DownloadClient { get; set; }
public string Indexer { get; set; }
public string OutputPath { get; set; }
}
public static class QueueResourceMapper
@@ -61,7 +62,8 @@ namespace Sonarr.Api.V3.Queue
DownloadId = model.DownloadId,
Protocol = model.Protocol,
DownloadClient = model.DownloadClient,
Indexer = model.Indexer
Indexer = model.Indexer,
OutputPath = model.OutputPath
};
}