mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
Adds a number of new field types and capabilities to existing fields. A massive change with far too many moving pieces to document in a single commit.
50 lines
941 B
TypeScript
50 lines
941 B
TypeScript
import { prisma } from '@documenso/prisma';
|
|
|
|
export type GetFieldByIdOptions = {
|
|
userId: number;
|
|
teamId?: number;
|
|
fieldId: number;
|
|
documentId?: number;
|
|
templateId?: number;
|
|
};
|
|
|
|
export const getFieldById = async ({
|
|
userId,
|
|
teamId,
|
|
fieldId,
|
|
documentId,
|
|
templateId,
|
|
}: GetFieldByIdOptions) => {
|
|
const field = await prisma.field.findFirst({
|
|
where: {
|
|
id: fieldId,
|
|
documentId,
|
|
templateId,
|
|
Document: {
|
|
OR:
|
|
teamId === undefined
|
|
? [
|
|
{
|
|
userId,
|
|
teamId: null,
|
|
},
|
|
]
|
|
: [
|
|
{
|
|
teamId,
|
|
team: {
|
|
members: {
|
|
some: {
|
|
userId,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
|
|
return field;
|
|
};
|