Finished the Plex Content Cacher. Need to do the episodes part but things are now showing as available! #865

This commit is contained in:
tidusjar 2017-05-21 00:13:07 +01:00
commit df5f0fc691
13 changed files with 143 additions and 75 deletions

View file

@ -37,14 +37,9 @@ namespace Ombi.Store.Context
public DbSet<PlexContent> PlexContent { get; set; }
public EntityEntry<GlobalSettings> Entry(GlobalSettings settings)
public EntityEntry<T> Entry<T>(T entry) where T : class
{
return base.Entry(settings);
}
public EntityEntry<User> Entry(User settings)
{
return base.Entry(settings);
return base.Entry(entry);
}
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)