aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-03-29 18:26:30 -0400
committerGitHub <noreply@github.com>2019-03-29 18:26:30 -0400
commit72dd6091091a8352336c85a6799e3f3c24b849c5 (patch)
treed715eb11f5d78dc2f0bea4c110d764ba6d791841 /Emby.Server.Implementations/ApplicationHost.cs
parentd9e7883fb50c765795c8bb6994c64a3245d00615 (diff)
parent13e94a8b1b78d570a528eee65ff777412f0e83c8 (diff)
Merge pull request #1149 from LogicalPhallacy/ImprovedPasswordReset
Adds per user password reset
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index ce8483a32..41ca2a102 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -1124,7 +1124,7 @@ namespace Emby.Server.Implementations
MediaSourceManager.AddParts(GetExports<IMediaSourceProvider>());
NotificationManager.AddParts(GetExports<INotificationService>(), GetExports<INotificationTypeFactory>());
- UserManager.AddParts(GetExports<IAuthenticationProvider>());
+ UserManager.AddParts(GetExports<IAuthenticationProvider>(), GetExports<IPasswordResetProvider>());
IsoManager.AddParts(GetExports<IIsoMounter>());
}