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

9 lines
229 B
TypeScript
Raw Normal View History

2018-04-02 04:15:53 +00:00
import config from '../../../config';
2018-06-18 05:28:43 +00:00
import { IDriveFile } from '../../../models/drive-file';
2018-04-01 10:18:36 +00:00
2018-06-18 05:28:43 +00:00
export default (file: IDriveFile) => ({
2018-04-01 10:18:36 +00:00
type: 'Document',
2018-06-18 05:28:43 +00:00
mediaType: file.contentType,
url: `${config.drive_url}/${file._id}`
2018-04-01 10:18:36 +00:00
});