|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.AspNetCore.Identity;
internal enum UserUpdateType
{
Update,
UserName,
AddPassword,
ChangePassword,
SecurityStamp,
ResetPassword,
RemoveLogin,
AddLogin,
AddClaims,
ReplaceClaim,
RemoveClaims,
AddToRoles,
RemoveFromRoles,
SetEmail,
ConfirmEmail,
PasswordRehash,
RemovePassword,
ChangeEmail,
SetPhoneNumber,
ChangePhoneNumber,
SetTwoFactorEnabled,
SetLockoutEnabled,
SetLockoutEndDate,
AccessFailed,
ResetAccessFailedCount,
SetAuthenticationToken,
RemoveAuthenticationToken,
ResetAuthenticatorKey,
GenerateNewTwoFactorRecoveryCodes,
RedeemTwoFactorRecoveryCode,
SetPasskey,
RemovePasskey
}
|