aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Authentication
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-07-04 00:25:00 -0400
committerGitHub <noreply@github.com>2020-07-04 00:25:00 -0400
commit46f67c9ea4f13e14d5f0b2aa30fdf0e10655c37d (patch)
treec98b1461f095ddf1ea6c2143b5b681fc00710d0b /MediaBrowser.Controller/Authentication
parent176f25fb98891bfc3b2e3215e957af8cfffd681c (diff)
parent44a8ea6bee3cf3fefc3d290dbaaa8c8e1554868f (diff)
Merge pull request #3423 from crobibero/easypassword
Remove EasyPassword from Authentication providers
Diffstat (limited to 'MediaBrowser.Controller/Authentication')
-rw-r--r--MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs b/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
index b10233c71..15c902777 100644
--- a/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
+++ b/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
@@ -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