Format correctly the PIN when updating it

This commit is contained in:
DrPandemic
2019-05-25 13:46:55 -04:00
parent 1bf3a26a61
commit 69ee49bee6
3 changed files with 36 additions and 22 deletions

View File

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