User password management
These are all methods on the [User
][signup-ref] class that help you manage a user's password.
updatePassword()
Updates the user's password.
function updatePassword: (params: UpdateUserPasswordParams) => Promise<User>;
UpdateUserPasswordParams
Name | Type | Description |
---|---|---|
newPassword | string | The user's new password. |
currentPassword? | string | The user's current password. |
signOutOfOtherSessions? | boolean | undefined | If set to true , all sessions will be signed out. |
updatePassword()
returns
removePassword()
Removes the user's password.
function removePassword: (params: RemoveUserPasswordParams) => Promise<User>;
RemoveUserPasswordParams
Name | Type | Description |
---|---|---|
currentPassword | string | The user's current password. |