Fixed some issues around the tv requests area

Added mattermost and telegram notifications #1459 #865 #1457
This commit is contained in:
tidusjar 2017-08-21 17:06:07 +01:00
parent 03e9852330
commit bf043fc76e
48 changed files with 1164 additions and 192 deletions

View file

@ -74,11 +74,15 @@ namespace Ombi.Store.Repository.Requests
public async Task Update(TvRequests request)
{
Db.Attach(request).State = EntityState.Modified;
await Db.SaveChangesAsync();
}
public async Task UpdateChild(ChildRequests request)
{
Db.Attach(request).State = EntityState.Modified;
await Db.SaveChangesAsync();
}
}