mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 05:26:39 +01:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import config from '../../../config';
|
|
import { IDriveFile } from '../../../models/drive-file';
|
|
|
|
export default (file: IDriveFile) => ({
|
|
type: 'Document',
|
|
mediaType: file.contentType,
|
|
url: file.metadata.url || `${config.drive_url}/${file._id}`
|
|
});
|