From a89c781b31b552856012dc5acdc43d51cf40fa93 Mon Sep 17 00:00:00 2001 From: Catalin Pit Date: Thu, 28 Aug 2025 11:44:20 +0300 Subject: [PATCH] chore: add deletedAt property --- packages/trpc/server/organisation-router/delete-organisation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/trpc/server/organisation-router/delete-organisation.ts b/packages/trpc/server/organisation-router/delete-organisation.ts index 526a2c3a7..78de1b74d 100644 --- a/packages/trpc/server/organisation-router/delete-organisation.ts +++ b/packages/trpc/server/organisation-router/delete-organisation.ts @@ -114,6 +114,7 @@ export const deleteOrganisationRoute = authenticatedProcedure data: { userId: serviceAccount.id, teamId: serviceAccountTeam.id, + deletedAt: new Date(), }, }); }