mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
## Description Direct templates links is a feature that provides template owners the ability to allow users to create documents based of their templates. ## General outline This works by allowing the template owner to configure a "direct recipient" in the template. When a user opens the direct link to the template, it will create a flow where they sign the fields configured by the template owner for the direct recipient. After these fields are signed the following will occur: - A document will be created where the owner is the template owner - The direct recipient fields will be signed - The document will be sent to any other recipients configured in the template - If there are none the document will be immediately completed ## Notes There's a custom prisma migration to migrate all documents to have 'DOCUMENT' as the source, then sets the column to required. --------- Co-authored-by: Lucas Smith <me@lucasjamessmith.me>
62 lines
1.1 KiB
TypeScript
62 lines
1.1 KiB
TypeScript
'use server';
|
|
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { AppError, AppErrorCode } from '../../errors/app-error';
|
|
|
|
export type ToggleTemplateDirectLinkOptions = {
|
|
templateId: number;
|
|
userId: number;
|
|
enabled: boolean;
|
|
};
|
|
|
|
export const toggleTemplateDirectLink = async ({
|
|
templateId,
|
|
userId,
|
|
enabled,
|
|
}: ToggleTemplateDirectLinkOptions) => {
|
|
const template = await prisma.template.findFirst({
|
|
where: {
|
|
id: templateId,
|
|
OR: [
|
|
{
|
|
userId,
|
|
},
|
|
{
|
|
team: {
|
|
members: {
|
|
some: {
|
|
userId,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
include: {
|
|
Recipient: true,
|
|
directLink: true,
|
|
},
|
|
});
|
|
|
|
if (!template) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, 'Template not found');
|
|
}
|
|
|
|
const { directLink } = template;
|
|
|
|
if (!directLink) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, 'Direct template link not found');
|
|
}
|
|
|
|
return await prisma.templateDirectLink.update({
|
|
where: {
|
|
id: directLink.id,
|
|
},
|
|
data: {
|
|
templateId: template.id,
|
|
enabled,
|
|
},
|
|
});
|
|
};
|