mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
stuff #865 need to work on the claims correctly
This commit is contained in:
parent
224b942190
commit
b4789363e8
14 changed files with 169 additions and 87 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.IO;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Resources;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.ChangeTracking;
|
||||
|
@ -38,7 +39,12 @@ namespace Ombi.Store.Context
|
|||
|
||||
public EntityEntry<GlobalSettings> Entry(GlobalSettings settings)
|
||||
{
|
||||
return Entry(settings);
|
||||
return base.Entry(settings);
|
||||
}
|
||||
|
||||
public EntityEntry<User> Entry(User settings)
|
||||
{
|
||||
return base.Entry(settings);
|
||||
}
|
||||
|
||||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue