33 lines
788 B
TypeScript
33 lines
788 B
TypeScript
import { subdomainSuffix, getOrgFullOrigin } from "@calcom/features/ee/organizations/lib/orgDomains";
|
|
import { prisma } from "@calcom/prisma";
|
|
import { teamMetadataSchema } from "@calcom/prisma/zod-utils";
|
|
|
|
export const getBrand = async (orgId: number | null) => {
|
|
if (!orgId) {
|
|
return null;
|
|
}
|
|
const org = await prisma.team.findFirst({
|
|
where: {
|
|
id: orgId,
|
|
},
|
|
select: {
|
|
logo: true,
|
|
name: true,
|
|
slug: true,
|
|
metadata: true,
|
|
},
|
|
});
|
|
const metadata = teamMetadataSchema.parse(org?.metadata);
|
|
const slug = (org?.slug || metadata?.requestedSlug) as string;
|
|
const fullDomain = getOrgFullOrigin(slug);
|
|
const domainSuffix = subdomainSuffix();
|
|
|
|
return {
|
|
...org,
|
|
metadata,
|
|
slug,
|
|
fullDomain,
|
|
domainSuffix,
|
|
};
|
|
};
|