11 lines
346 B
TypeScript
11 lines
346 B
TypeScript
import { DataSource } from 'typeorm';
|
|
import { AttachmentEntity } from '../../../entities';
|
|
import { rowToAttachment } from '../../mappers';
|
|
|
|
export async function handleGetAllAttachments(dataSource: DataSource) {
|
|
const repo = dataSource.getRepository(AttachmentEntity);
|
|
const rows = await repo.find();
|
|
|
|
return rows.map(rowToAttachment);
|
|
}
|