Fixed the issue of it showing as not requested when we find it in Radarr.

Made the tv shows match a bit more to the movie requests
Added the ability for plex and emby users to login
Improved the welcome email, will only show for users that have not logged in
Fixed discord notifications
the about screen now checks if there is an update ready
#1513
This commit is contained in:
tidusjar 2017-09-28 19:53:30 +01:00
parent 9556ed1b34
commit 057683d97a
32 changed files with 1039 additions and 108 deletions

View file

@ -13,6 +13,7 @@ using Ombi.Store.Repository;
using Ombi.Store.Repository.Requests;
using Ombi.Store.Entities;
using Microsoft.AspNetCore.Identity;
using Ombi.Core.Authentication;
namespace Ombi.Core.Engine
{
@ -23,7 +24,7 @@ namespace Ombi.Core.Engine
private Dictionary<int, TvRequests> _dbTv;
protected BaseMediaEngine(IPrincipal identity, IRequestServiceMain requestService,
IRuleEvaluator rules, UserManager<OmbiUser> um) : base(identity, um, rules)
IRuleEvaluator rules, OmbiUserManager um) : base(identity, um, rules)
{
RequestService = requestService;
}