Changed health check to send user to appropriate scenario on Wiki. Also added support to Nzbget to get the Category config.

This commit is contained in:
Taloth Saldono
2014-06-06 07:55:38 +02:00
parent 17482cb6c1
commit b72c9b338c
12 changed files with 184 additions and 9 deletions
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Download
{
public class DownloadClientStatus
{
public Boolean IsLocalhost { get; set; }
public List<String> OutputRootFolders { get; set; }
}
}