diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-13 01:19:03 -0400 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-13 01:19:03 -0400 |
| commit | ff55da9029f8b18343dbf65ca2afa643b6e0877f (patch) | |
| tree | 3b863f31ba11e44f0604b8b0bb76eb0c4fe24cb9 /MediaBrowser.Controller/Library/IUserManager.cs | |
| parent | 17d01636ae8a8054dc1fc043315f4fb2f4d53187 (diff) | |
switch authentication to sha1
Diffstat (limited to 'MediaBrowser.Controller/Library/IUserManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IUserManager.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index cb37b8145..1a2c1482c 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -159,5 +159,20 @@ namespace MediaBrowser.Controller.Library /// <param name="item">The item.</param> /// <param name="data">The data.</param> Task SaveUserDataForItem(User user, BaseItem item, UserItemData data); + + /// <summary> + /// Resets the password. + /// </summary> + /// <param name="user">The user.</param> + /// <returns>Task.</returns> + Task ResetPassword(User user); + + /// <summary> + /// Changes the password. + /// </summary> + /// <param name="user">The user.</param> + /// <param name="newPassword">The new password.</param> + /// <returns>Task.</returns> + Task ChangePassword(User user, string newPassword); } } |
