mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-02 09:26:44 -06: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}`
|
||
|
});
|