Some errors fixed and some ui improvements #865

Also reworked sonarr and how episodes work
This commit is contained in:
tidusjar 2017-10-04 20:28:18 +01:00
commit 95e3c62e30
23 changed files with 1017 additions and 137 deletions

View file

@ -34,6 +34,7 @@ namespace Ombi.Store.Context
DbSet<TvIssues> TvIssues { get; set; }
DbSet<Tokens> Tokens { get; set; }
DbSet<SonarrCache> SonarrCache { get; set; }
DbSet<SonarrEpisodeCache> SonarrEpisodeCache { get; set; }
EntityEntry Update(object entity);
EntityEntry<TEntity> Update<TEntity>(TEntity entity) where TEntity : class;
}