mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
40 lines
889 B
TypeScript
40 lines
889 B
TypeScript
import { prisma } from '@documenso/prisma';
|
|
|
|
import { AppError, AppErrorCode } from '../../errors/app-error';
|
|
|
|
export const getOrganisationClaim = async ({ organisationId }: { organisationId: string }) => {
|
|
const organisationClaim = await prisma.organisationClaim.findFirst({
|
|
where: {
|
|
organisation: {
|
|
id: organisationId,
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!organisationClaim) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND);
|
|
}
|
|
|
|
return organisationClaim;
|
|
};
|
|
|
|
export const getOrganisationClaimByTeamId = async ({ teamId }: { teamId: number }) => {
|
|
const organisationClaim = await prisma.organisationClaim.findFirst({
|
|
where: {
|
|
organisation: {
|
|
teams: {
|
|
some: {
|
|
id: teamId,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!organisationClaim) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND);
|
|
}
|
|
|
|
return organisationClaim;
|
|
};
|