diff options
| author | Luke <luke.pulverenti@gmail.com> | 2015-02-09 16:58:30 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2015-02-09 16:58:30 -0500 |
| commit | 4cc3b2f0ccd7c092a4acf72db4903415e175037a (patch) | |
| tree | f9f90f8665b726253b8b357674f2f141aa43abc9 /MediaBrowser.Controller/Library/IUserManager.cs | |
| parent | e7037a9b80843c127712f11430239f8fa3cb4aed (diff) | |
| parent | 3d7089a7dbabb652730c892206ca050f52f832b1 (diff) | |
Merge pull request #1005 from MediaBrowser/dev
3.0.5518.0
Diffstat (limited to 'MediaBrowser.Controller/Library/IUserManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IUserManager.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index f5846973e..97a3cced9 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -118,6 +118,21 @@ namespace MediaBrowser.Controller.Library Task ResetPassword(User user); /// <summary> + /// Gets the offline user dto. + /// </summary> + /// <param name="user">The user.</param> + /// <param name="deviceId">The device identifier.</param> + /// <returns>UserDto.</returns> + UserDto GetOfflineUserDto(User user, string deviceId); + + /// <summary> + /// Resets the easy password. + /// </summary> + /// <param name="user">The user.</param> + /// <returns>Task.</returns> + Task ResetEasyPassword(User user); + + /// <summary> /// Changes the password. /// </summary> /// <param name="user">The user.</param> @@ -126,6 +141,14 @@ namespace MediaBrowser.Controller.Library Task ChangePassword(User user, string newPasswordSha1); /// <summary> + /// Changes the easy password. + /// </summary> + /// <param name="user">The user.</param> + /// <param name="newPasswordSha1">The new password sha1.</param> + /// <returns>Task.</returns> + Task ChangeEasyPassword(User user, string newPasswordSha1); + + /// <summary> /// Gets the user dto. /// </summary> /// <param name="user">The user.</param> |
