mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 09:12:57 -07:00
#1462 #865 Had to refactor how we use notificaitons. So we now have more notification fields about the request
This commit is contained in:
parent
b69b322bd5
commit
b52a57b117
21 changed files with 256 additions and 112 deletions
|
@ -49,7 +49,9 @@ namespace Ombi.Store.Repository
|
|||
|
||||
public GlobalSettings Get(string pageName)
|
||||
{
|
||||
return Db.Settings.FirstOrDefault(x => x.SettingsName == pageName);
|
||||
var entity = Db.Settings.FirstOrDefault(x => x.SettingsName == pageName);
|
||||
Db.Entry(entity).Reload();
|
||||
return entity;
|
||||
}
|
||||
|
||||
public async Task<GlobalSettings> GetAsync(string settingsName)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue