haixunMaster/lib/drafts/constants.ts

6 lines
244 B
TypeScript
Raw Normal View History

2026-06-21 12:50:31 +00:00
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)}`;
}