summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/document.ts
blob: f6e9dca45df654b28a10f051f7f908a21aae9ee7 (plain)
1
2
3
4
5
6
7
8
9
import { DriveFile } from '../../../models/entities/drive-file';
import { DriveFiles } from '../../../models';

export default (file: DriveFile) => ({
	type: 'Document',
	mediaType: file.type,
	url: DriveFiles.getPublicUrl(file),
	name: file.comment,
});