mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
14 lines
455 B
TypeScript
14 lines
455 B
TypeScript
import type { TeamGlobalSettings } from '@prisma/client';
|
|
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from '../constants/app';
|
|
|
|
export const teamGlobalSettingsToBranding = (teamGlobalSettings: TeamGlobalSettings) => {
|
|
return {
|
|
...teamGlobalSettings,
|
|
brandingLogo:
|
|
teamGlobalSettings.brandingEnabled && teamGlobalSettings.brandingLogo
|
|
? `${NEXT_PUBLIC_WEBAPP_URL()}/api/branding/logo/team/${teamGlobalSettings.teamId}`
|
|
: '',
|
|
};
|
|
};
|