mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
refactor: return correct information
This commit is contained in:
@@ -100,8 +100,8 @@ export const findAuthByEmail = async (email: string) => {
|
||||
};
|
||||
|
||||
export const findAuthById = async (authId: string) => {
|
||||
const result = await db.query.user.findFirst({
|
||||
where: eq(user.id, authId),
|
||||
const result = await db.query.users_temp.findFirst({
|
||||
where: eq(users_temp.id, authId),
|
||||
columns: {
|
||||
createdAt: false,
|
||||
updatedAt: false,
|
||||
|
||||
Reference in New Issue
Block a user