mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
31 lines
865 B
TypeScript
31 lines
865 B
TypeScript
import { deleteEnvelopeRecipient } from '@documenso/lib/server-only/recipient/delete-envelope-recipient';
|
|
|
|
import { authenticatedProcedure } from '../../trpc';
|
|
import {
|
|
ZDeleteEnvelopeRecipientRequestSchema,
|
|
ZDeleteEnvelopeRecipientResponseSchema,
|
|
deleteEnvelopeRecipientMeta,
|
|
} from './delete-envelope-recipient.types';
|
|
|
|
export const deleteEnvelopeRecipientRoute = authenticatedProcedure
|
|
.meta(deleteEnvelopeRecipientMeta)
|
|
.input(ZDeleteEnvelopeRecipientRequestSchema)
|
|
.output(ZDeleteEnvelopeRecipientResponseSchema)
|
|
.mutation(async ({ input, ctx }) => {
|
|
const { user, teamId, metadata } = ctx;
|
|
const { recipientId } = input;
|
|
|
|
ctx.logger.info({
|
|
input: {
|
|
recipientId,
|
|
},
|
|
});
|
|
|
|
await deleteEnvelopeRecipient({
|
|
userId: user.id,
|
|
teamId,
|
|
recipientId,
|
|
requestMetadata: metadata,
|
|
});
|
|
});
|