Track fully imported downloads in separate history table

New: Improved detection of already imported downloads
Closes #232
This commit is contained in:
Mark McDowall
2020-03-03 18:09:29 -08:00
committed by ta264
parent e1eb9a0ba7
commit 25b37ace34
43 changed files with 684 additions and 293 deletions
@@ -71,6 +71,10 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
.Setup(s => s.GetDownloadClients())
.Returns(new IDownloadClient[] { _downloadClient.Object });
Mocker.GetMock<IProvideDownloadClient>()
.Setup(s => s.Get(It.IsAny<int>()))
.Returns(_downloadClient.Object);
Mocker.GetMock<IConfigService>()
.Setup(s => s.EnableCompletedDownloadHandling)
.Returns(true);