mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
Added the user login for emby users #435
This commit is contained in:
parent
4193cb88fd
commit
643676e7ea
15 changed files with 296 additions and 137 deletions
|
@ -42,6 +42,7 @@ using Ombi.Core;
|
|||
using Ombi.Core.SettingModels;
|
||||
using Ombi.Helpers;
|
||||
using Ombi.Store;
|
||||
using Ombi.Store.Models.Emby;
|
||||
using Ombi.Store.Models.Plex;
|
||||
using Ombi.Store.Repository;
|
||||
using Ombi.UI.Authentication;
|
||||
|
@ -89,7 +90,8 @@ namespace Ombi.UI
|
|||
var config = new CustomAuthenticationConfiguration
|
||||
{
|
||||
RedirectUrl = redirect,
|
||||
PlexUserRepository = container.Get<IExternalUserRepository<PlexUsers>>(), // TODO emby
|
||||
PlexUserRepository = container.Get<IExternalUserRepository<PlexUsers>>(),
|
||||
EmbyUserRepository = container.Get<IExternalUserRepository<EmbyUsers>>(),
|
||||
LocalUserRepository = container.Get<IUserRepository>()
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue