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

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