0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(core): user should be able to set password even if they do not have one (#3331)

This commit is contained in:
Charles Zhao 2023-03-08 20:34:17 +08:00 committed by GitHub
parent 4675ce6dbc
commit 32dff20633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 9 deletions

View file

@ -90,13 +90,7 @@ const ChangePasswordModal = () => {
};
return (
<MainFlowLikeModal
title="profile.password.set_password"
onClose={onClose}
onGoBack={() => {
navigate('../verify-password', { state });
}}
>
<MainFlowLikeModal title="profile.password.set_password" onClose={onClose} onGoBack={onClose}>
<TextInput
placeholder={t('profile.password.password')}
{...register('newPassword', {

View file

@ -133,7 +133,7 @@ export default function userRoutes<T extends AuthedMeRouter>(
const { id: userId } = ctx.auth;
const { password } = ctx.guard.body;
const { isSuspended } = await findUserById(userId);
const { isSuspended, passwordEncrypted: oldPasswordEncrypted } = await findUserById(userId);
assertThat(!isSuspended, new RequestError({ code: 'user.suspended', status: 401 }));
@ -142,7 +142,9 @@ export default function userRoutes<T extends AuthedMeRouter>(
assertThat(sessionId, new RequestError({ code: 'session.not_found', status: 401 }));
await checkVerificationStatus(userId, sessionId);
if (oldPasswordEncrypted) {
await checkVerificationStatus(userId, sessionId);
}
const { passwordEncrypted, passwordEncryptionMethod } = await encryptUserPassword(password);
await updateUserById(userId, { passwordEncrypted, passwordEncryptionMethod });