aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IUserManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Library/IUserManager.cs')
-rw-r--r--MediaBrowser.Controller/Library/IUserManager.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs
index f5846973e..5aa58aa57 100644
--- a/MediaBrowser.Controller/Library/IUserManager.cs
+++ b/MediaBrowser.Controller/Library/IUserManager.cs
@@ -118,6 +118,13 @@ namespace MediaBrowser.Controller.Library
Task ResetPassword(User user);
/// <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 +133,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>