From bca1d65bdc026578e270b19b6129b79faeb53969 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 17 Sep 2017 12:45:23 -0400 Subject: fixes #1074 --- MediaBrowser.Controller/Library/IUserManager.cs | 27 +++---------------------- 1 file changed, 3 insertions(+), 24 deletions(-) (limited to 'MediaBrowser.Controller/Library/IUserManager.cs') diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index 6da3e53aa..d4232c77e 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -58,16 +58,6 @@ namespace MediaBrowser.Controller.Library /// User. User GetUserByName(string name); - /// - /// Authenticates a User and returns a result indicating whether or not it succeeded - /// - /// The username. - /// The password sha1. - /// The remote end point. - /// Task{System.Boolean}. - /// user - Task AuthenticateUser(string username, string passwordSha1, string remoteEndPoint); - /// /// Refreshes metadata for each user /// @@ -135,18 +125,12 @@ namespace MediaBrowser.Controller.Library /// /// Changes the password. /// - /// The user. - /// The new password sha1. - /// Task. - void ChangePassword(User user, string newPasswordSha1); + void ChangePassword(User user, string newPassword, string newPasswordSha1); /// /// Changes the easy password. /// - /// The user. - /// The new password sha1. - /// Task. - void ChangeEasyPassword(User user, string newPasswordSha1); + void ChangeEasyPassword(User user, string newPassword, string newPasswordSha1); /// /// Gets the user dto. @@ -159,12 +143,7 @@ namespace MediaBrowser.Controller.Library /// /// Authenticates the user. /// - /// The username. - /// The password sha1. - /// The password MD5. - /// The remote end point. - /// Task<System.Boolean>. - Task AuthenticateUser(string username, string passwordSha1, string passwordMd5, string remoteEndPoint); + Task AuthenticateUser(string username, string password, string passwordSha1, string passwordMd5, string remoteEndPoint); /// /// Starts the forgot password process. -- cgit v1.2.3