aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Authentication
diff options
context:
space:
mode:
authorNiels van Velzen <git@ndat.nl>2025-10-05 10:59:10 +0200
committerNiels van Velzen <git@ndat.nl>2025-10-05 11:10:36 +0200
commit0fb6d930e1ca14d1d3af06ecee310869d2e86dfe (patch)
treebdc5466c622feb1cd4c9d509e44127189ee1036f /MediaBrowser.Controller/Authentication
parent288640a5d0f8335f6c4093de9bc84acd4d5824db (diff)
Deprecate HasPassword property on UserDto
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 976a667ac..c993ceea8 100644
--- a/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
+++ b/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs
@@ -14,8 +14,6 @@ namespace MediaBrowser.Controller.Authentication
Task<ProviderAuthenticationResult> Authenticate(string username, string password);
- bool HasPassword(User user);
-
Task ChangePassword(User user, string newPassword);
}