misskey/src/remote/activitypub/renderer/document.ts

8 lines
164 B
TypeScript
Raw Normal View History

2018-04-01 21:15:27 +02:00
import config from '../../../conf';
2018-04-01 12:18:36 +02:00
export default ({ _id, contentType }) => ({
type: 'Document',
mediaType: contentType,
url: `${config.drive_url}/${_id}`
});