From ff55da9029f8b18343dbf65ca2afa643b6e0877f Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Wed, 13 Mar 2013 01:19:03 -0400 Subject: switch authentication to sha1 --- MediaBrowser.Controller/Library/IUserManager.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'MediaBrowser.Controller/Library/IUserManager.cs') 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 /// The item. /// The data. Task SaveUserDataForItem(User user, BaseItem item, UserItemData data); + + /// + /// Resets the password. + /// + /// The user. + /// Task. + Task ResetPassword(User user); + + /// + /// Changes the password. + /// + /// The user. + /// The new password. + /// Task. + Task ChangePassword(User user, string newPassword); } } -- cgit v1.2.3