diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-12-11 10:15:43 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-12-11 10:15:43 -0500 |
| commit | 76f61eb0d6941782c3d3187e16a22333c8b13b4c (patch) | |
| tree | b706b23c7af1ca7eb7bbc5ef7e93df4485fcd55b /MediaBrowser.Controller/Library/IUserManager.cs | |
| parent | a8524be6be3ff7c527d31cbe3c4e0edc7ffa9d56 (diff) | |
Convert DeleteUser to async
Diffstat (limited to 'MediaBrowser.Controller/Library/IUserManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IUserManager.cs | 3 |
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. |
