6 lines
244 B
TypeScript
6 lines
244 B
TypeScript
|
|
export const MAX_DRAFT_IMAGES = 10;
|
||
|
|
|
||
|
|
export function draftImageApiUrl(draftId: string, imagePath: string): string {
|
||
|
|
const base = imagePath.split("/").pop() ?? imagePath;
|
||
|
|
return `/api/drafts/${draftId}/image?p=${encodeURIComponent(base)}`;
|
||
|
|
}
|