mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Finished the Plex Content Cacher. Need to do the episodes part but things are now showing as available! #865
This commit is contained in:
parent
b4789363e8
commit
df5f0fc691
13 changed files with 143 additions and 75 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue