Merge pull request #3423 from crobibero/easypassword

Remove EasyPassword from Authentication providers
This commit is contained in:
Joshua M. Boniface
2020-07-04 00:25:00 -04:00
committed by GitHub
4 changed files with 11 additions and 40 deletions

View File

@@ -13,8 +13,6 @@ namespace MediaBrowser.Controller.Authentication
Task<ProviderAuthenticationResult> Authenticate(string username, string password);
bool HasPassword(User user);
Task ChangePassword(User user, string newPassword);
void ChangeEasyPassword(User user, string newPassword, string newPasswordHash);
string GetEasyPasswordHash(User user);
}
public interface IRequiresResolvedUser