removed unneccesary files
This commit is contained in:
@@ -32,8 +32,8 @@ export async function resetUser(userId: string) {
|
||||
export async function ensureUser(userId: string) {
|
||||
await prisma.user.upsert({
|
||||
where: { id: userId },
|
||||
update: {},
|
||||
create: { id: userId, email: `${userId}@demo.local` },
|
||||
update: { timezone: "UTC" },
|
||||
create: { id: userId, email: `${userId}@demo.local`, timezone: "UTC" },
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user