Signalr errors will not be shown in the UI.

New: Search History, review recent searches and force specific reports to download (Under history)
This commit is contained in:
Mark McDowall 2012-04-23 00:38:42 -07:00
commit 38927e3ca1
16 changed files with 100 additions and 99 deletions

View file

@ -8,8 +8,8 @@ using PetaPoco;
namespace NzbDrone.Core.Repository.Search
{
[PrimaryKey("Id", autoIncrement = true)]
[TableName("SearchResults")]
public class SearchResult
[TableName("SearchHistory")]
public class SearchHistory
{
public int Id { get; set; }
public int SeriesId { get; set; }
@ -19,7 +19,7 @@ namespace NzbDrone.Core.Repository.Search
public bool SuccessfulDownload { get; set; }
[ResultColumn]
public List<SearchResultItem> SearchResultItems { get; set; }
public List<SearchHistoryItem> SearchHistoryItems { get; set; }
[Ignore]
public List<int> Successes { get; set; }

View file

@ -8,11 +8,11 @@ using PetaPoco;
namespace NzbDrone.Core.Repository.Search
{
[PrimaryKey("Id", autoIncrement = true)]
[TableName("SearchResultItems")]
public class SearchResultItem
[TableName("SearchHistoryItems")]
public class SearchHistoryItem
{
public int Id { get; set; }
public int SearchResultId { get; set; }
public int SearchHistoryId { get; set; }
public string ReportTitle { get; set; }
public string Indexer { get; set; }
public string NzbUrl { get; set; }