* add eslint config * migrate autoLock to features * migrate teamService to features * migrate userCreationService * migrate insights services to features * migrate ProfileRepository * update imports * migrate filter segmen tests * migrate filter segment repository * migrate getBusyTimes * migrate getLocaleFromRequest * refactor csvUtils * make filename clearer * migrate getLuckyUser integration test * migrate autoLock test to features * wip * refactors * migrate useBookerUrl * migrate more * wip * Migrate eventTypeRepository * membership repository * update imports * update imports * migrate * move organization repository * update imports * update imports * wip * wip * wip * wip * wip * wip * wip * wip * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix tests * fix type checks * fix * fix * migrate * update imports * fix tests * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix
13 lines
495 B
TypeScript
13 lines
495 B
TypeScript
import { getBrand } from "@calcom/features/ee/organizations/lib/getBrand";
|
|
import { WEBSITE_URL } from "@calcom/lib/constants";
|
|
|
|
export const getBookerBaseUrl = async (organizationId: number | null) => {
|
|
const orgBrand = await getBrand(organizationId);
|
|
return orgBrand?.fullDomain ?? WEBSITE_URL;
|
|
};
|
|
|
|
export const getTeamBookerUrl = async (team: { organizationId: number | null }) => {
|
|
const orgBrand = await getBrand(team.organizationId);
|
|
return orgBrand?.fullDomain ?? WEBSITE_URL;
|
|
};
|