aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IUserManager.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-12-11 21:29:20 +0100
committerGitHub <noreply@github.com>2020-12-11 21:29:20 +0100
commit04ba59ab40ee4d5b069ffd9f04f9a0002fba62c1 (patch)
treedb7f6e3fc32dcc5e8a9c07f67ddd06641bb21832 /MediaBrowser.Controller/Library/IUserManager.cs
parenta57e465de9c34c15fb6981b752bb5ad4121a2ab5 (diff)
parent76f61eb0d6941782c3d3187e16a22333c8b13b4c (diff)
Merge pull request #4766 from barronpm/usermanager-async
Convert DeleteUser to async
Diffstat (limited to 'MediaBrowser.Controller/Library/IUserManager.cs')
-rw-r--r--MediaBrowser.Controller/Library/IUserManager.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs
index 8fd3b8c34..6e267834b 100644
--- a/MediaBrowser.Controller/Library/IUserManager.cs
+++ b/MediaBrowser.Controller/Library/IUserManager.cs
@@ -93,7 +93,8 @@ namespace MediaBrowser.Controller.Library
/// Deletes the specified user.
/// </summary>
/// <param name="userId">The id of the user to be deleted.</param>
- void DeleteUser(Guid userId);
+ /// <returns>A task representing the deletion of the user.</returns>
+ Task DeleteUserAsync(Guid userId);
/// <summary>
/// Resets the password.