Closed fricred closed 4 years ago
Hi, Can u please add temporary as parameter in the method ResetUserPasswordAsync ?
ResetUserPasswordAsync
public async Task<bool> ResetUserPasswordAsync(string realm, string userId, string password, bool temporary) { var response = await GetBaseUrl(realm) .AppendPathSegment($"/admin/realms/{realm}/users/{userId}/reset-password") .PutJsonAsync(new { type = "password", value = password, temporary = temporary }) .ConfigureAwait(false); return response.IsSuccessStatusCode; }
This is available in release 1.0.7.
Hi, Can u please add temporary as parameter in the method
ResetUserPasswordAsync
?