mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Working on the organization and permissions.
This commit is contained in:
+17
-9
@@ -5,24 +5,32 @@ import { v4 as uuidv4 } from "uuid";
|
||||
import { db } from "@/db";
|
||||
import { eq } from "drizzle-orm";
|
||||
import * as drizzleDb from "@/db";
|
||||
import {authClient} from "@/lib/auth/auth-client";
|
||||
import {auth} from "@/lib/auth/auth";
|
||||
|
||||
|
||||
export const deleteUserAction = userAction.schema(z.string()).action(async ({ parsedInput, ctx }) => {
|
||||
const userId = parsedInput.length > 0 ? parsedInput : ctx.user.id;
|
||||
const uuid = uuidv4();
|
||||
|
||||
const [updatedUser] = await db
|
||||
.update(drizzleDb.schemas.user)
|
||||
.set({
|
||||
email: `${uuid}@portabase.com`,
|
||||
name: `${uuid}`,
|
||||
//deleted: true,
|
||||
//todo: add deleted
|
||||
})
|
||||
|
||||
// const [updatedUser] = await db
|
||||
// .update(drizzleDb.schemas.user)
|
||||
// .set({
|
||||
// email: `${uuid}@portabase.com`,
|
||||
// name: `${uuid}`,
|
||||
// //deleted: true,
|
||||
// //todo: add deleted
|
||||
// })
|
||||
// .where(eq(drizzleDb.schemas.user.id, userId))
|
||||
// .returning();
|
||||
const [deletedUser] = await db
|
||||
.delete(drizzleDb.schemas.user)
|
||||
.where(eq(drizzleDb.schemas.user.id, userId))
|
||||
.returning();
|
||||
|
||||
|
||||
return {
|
||||
data: updatedUser,
|
||||
data: deletedUser,
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user