diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-03-29 18:26:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-29 18:26:30 -0400 |
| commit | 72dd6091091a8352336c85a6799e3f3c24b849c5 (patch) | |
| tree | d715eb11f5d78dc2f0bea4c110d764ba6d791841 /MediaBrowser.Controller/Library/IUserManager.cs | |
| parent | d9e7883fb50c765795c8bb6994c64a3245d00615 (diff) | |
| parent | 13e94a8b1b78d570a528eee65ff777412f0e83c8 (diff) | |
Merge pull request #1149 from LogicalPhallacy/ImprovedPasswordReset
Adds per user password reset
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(); } } |
