mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 03:43:08 +02:00
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
|
import config from '../../../../conf';
|
||
|
|
||
|
export default ({ _id, contentType }) => ({
|
||
|
type: 'Document',
|
||
|
mediaType: contentType,
|
||
|
url: `${config.drive_url}/${_id}`
|
||
|
});
|