mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { adminProcedure } from '../trpc';
|
|
import {
|
|
ZUpdateAdminOrganisationRequestSchema,
|
|
ZUpdateAdminOrganisationResponseSchema,
|
|
} from './update-admin-organisation.types';
|
|
|
|
export const updateAdminOrganisationRoute = adminProcedure
|
|
.input(ZUpdateAdminOrganisationRequestSchema)
|
|
.output(ZUpdateAdminOrganisationResponseSchema)
|
|
.mutation(async ({ input, ctx }) => {
|
|
const { organisationId, data } = input;
|
|
|
|
ctx.logger.info({
|
|
input: {
|
|
organisationId,
|
|
},
|
|
});
|
|
|
|
const organisation = await prisma.organisation.findUnique({
|
|
where: {
|
|
id: organisationId,
|
|
},
|
|
include: {
|
|
organisationClaim: true,
|
|
},
|
|
});
|
|
|
|
if (!organisation) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND);
|
|
}
|
|
|
|
const { name, url, customerId, claims, originalSubscriptionClaimId } = data;
|
|
|
|
await prisma.organisation.update({
|
|
where: {
|
|
id: organisationId,
|
|
},
|
|
data: {
|
|
name,
|
|
url,
|
|
customerId: customerId ? customerId : undefined,
|
|
},
|
|
});
|
|
|
|
await prisma.organisationClaim.update({
|
|
where: {
|
|
id: organisation.organisationClaimId,
|
|
},
|
|
data: {
|
|
...claims,
|
|
originalSubscriptionClaimId,
|
|
},
|
|
});
|
|
});
|