summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/document.ts
blob: fdd52c1b6ca060940aa4b13977ca496ef34149f2 (plain)
1
2
3
4
5
6
7
import config from '../../../conf';

export default ({ _id, contentType }) => ({
	type: 'Document',
	mediaType: contentType,
	url: `${config.drive_url}/${_id}`
});