reformat with prettier with semicolons and tabs
This commit is contained in:
@ -1,24 +1,24 @@
|
||||
import { NotFoundError, SecurePassword, resolver } from "blitz"
|
||||
import { NotFoundError, SecurePassword, resolver } from "blitz";
|
||||
|
||||
import db from "../../../db"
|
||||
import { authenticateUser } from "./login"
|
||||
import { ChangePassword } from "../validations"
|
||||
import db from "../../../db";
|
||||
import { authenticateUser } from "./login";
|
||||
import { ChangePassword } from "../validations";
|
||||
|
||||
export default resolver.pipe(
|
||||
resolver.zod(ChangePassword),
|
||||
resolver.authorize(),
|
||||
async ({ currentPassword, newPassword }, ctx) => {
|
||||
const user = await db.user.findFirst({ where: { id: ctx.session.userId! } })
|
||||
if (!user) throw new NotFoundError()
|
||||
const user = await db.user.findFirst({ where: { id: ctx.session.userId! } });
|
||||
if (!user) throw new NotFoundError();
|
||||
|
||||
await authenticateUser(user.email, currentPassword)
|
||||
await authenticateUser(user.email, currentPassword);
|
||||
|
||||
const hashedPassword = await SecurePassword.hash(newPassword.trim())
|
||||
const hashedPassword = await SecurePassword.hash(newPassword.trim());
|
||||
await db.user.update({
|
||||
where: { id: user.id },
|
||||
data: { hashedPassword },
|
||||
})
|
||||
});
|
||||
|
||||
return true
|
||||
return true;
|
||||
}
|
||||
)
|
||||
);
|
||||
|
Reference in New Issue
Block a user