diff --git a/apps/dokploy/server/api/routers/user.ts b/apps/dokploy/server/api/routers/user.ts index afab315e2..3f217ceed 100644 --- a/apps/dokploy/server/api/routers/user.ts +++ b/apps/dokploy/server/api/routers/user.ts @@ -118,14 +118,6 @@ export const userRouter = createTRPCRouter({ return memberResult; }), - getTrustedOrigins: protectedProcedure.query(async ({ ctx }) => { - const memberResult = await db.query.member.findFirst({ - where: and( - eq(member.organizationId, ctx.session?.activeOrganizationId || ""), - ), - }); - return memberResult?.user?.trustedOrigins ?? []; - }), haveRootAccess: protectedProcedure.query(async ({ ctx }) => { if (!IS_CLOUD) { return false;