mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
15 lines
471 B
TypeScript
15 lines
471 B
TypeScript
import { NEXT_PUBLIC_WEBAPP_URL } from '../constants/app';
|
|
|
|
export const formatUserProfilePath = (
|
|
profileUrl: string,
|
|
options: { excludeBaseUrl?: boolean } = {},
|
|
) => {
|
|
return `${!options?.excludeBaseUrl ? NEXT_PUBLIC_WEBAPP_URL() : ''}/p/${profileUrl}`;
|
|
};
|
|
|
|
export const formatTeamProfilePath = (
|
|
profileUrl: string,
|
|
options: { excludeBaseUrl?: boolean } = {},
|
|
) => {
|
|
return `${!options?.excludeBaseUrl ? NEXT_PUBLIC_WEBAPP_URL() : ''}/p/${profileUrl}`;
|
|
};
|