Files
outline/server/presenters/attachment.ts
2022-12-31 09:04:45 -05:00

13 lines
314 B
TypeScript

import { Attachment } from "@server/models";
export default function presentAttachment(attachment: Attachment) {
return {
documentId: attachment.documentId,
contentType: attachment.contentType,
name: attachment.name,
id: attachment.id,
url: attachment.url,
size: attachment.size,
};
}