Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek committed Apr 23, 2024
1 parent b28efc1 commit 9bb5131
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ public async Task<IUser> GetUserAsync(string usernameOrEmail)
return user;
}

public Task<IUser> GetUserByUniqueIdAsync(string userIdentifier)
=> _userManager.FindByIdAsync(userIdentifier);
public Task<IUser> GetUserByUniqueIdAsync(string userId)
=> _userManager.FindByIdAsync(userId);

public void ProcessValidationErrors(IEnumerable<IdentityError> errors, User user, Action<string, string> reportError)
{
Expand Down

0 comments on commit 9bb5131

Please sign in to comment.