diff options
| author | Phallacy <Dragoonmac@gmail.com> | 2019-03-22 00:01:23 -0700 |
|---|---|---|
| committer | Phallacy <Dragoonmac@gmail.com> | 2019-03-22 00:01:23 -0700 |
| commit | 09921a00aaad31c0ea4a0650e8d0ddb890dca735 (patch) | |
| tree | 06915aded5a829b47d22d6640715ec8f72cfe967 /MediaBrowser.Controller/Library/IUserManager.cs | |
| parent | c2667f99f4d50f4f7d9bbeec50e8491e52468962 (diff) | |
made password resets an interface and per user
Diffstat (limited to 'MediaBrowser.Controller/Library/IUserManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IUserManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index 925d91a37..7f7370893 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -200,8 +200,9 @@ namespace MediaBrowser.Controller.Library /// <returns>System.String.</returns> string MakeValidUsername(string username); - void AddParts(IEnumerable<IAuthenticationProvider> authenticationProviders); + void AddParts(IEnumerable<IAuthenticationProvider> authenticationProviders, IEnumerable<IPasswordResetProvider> passwordResetProviders); NameIdPair[] GetAuthenticationProviders(); + NameIdPair[] GetPasswordResetProviders(); } } |
