diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-14 00:22:17 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-14 00:22:17 -0400 |
| commit | 1d70f5469f68c1f576bad85ff35930b593e955de (patch) | |
| tree | 57b3d4c4bf675c9dda9e5b12a635e9831253ae5a /MediaBrowser.Controller/Library/IUserManager.cs | |
| parent | 16bc1f35ff36a1a91bb0e8851a354349cbb07ff7 (diff) | |
update connect
Diffstat (limited to 'MediaBrowser.Controller/Library/IUserManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IUserManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index 3efdbea76..39ec2b85d 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -55,16 +55,16 @@ namespace MediaBrowser.Controller.Library /// <param name="id">The identifier.</param> /// <returns>User.</returns> User GetUserById(string id); - + /// <summary> /// Authenticates a User and returns a result indicating whether or not it succeeded /// </summary> /// <param name="username">The username.</param> - /// <param name="password">The password.</param> + /// <param name="passwordSha1">The password sha1.</param> /// <param name="remoteEndPoint">The remote end point.</param> /// <returns>Task{System.Boolean}.</returns> /// <exception cref="System.ArgumentNullException">user</exception> - Task<bool> AuthenticateUser(string username, string password, string remoteEndPoint); + Task<bool> AuthenticateUser(string username, string passwordSha1, string remoteEndPoint); /// <summary> /// Refreshes metadata for each user |
