misskey/src/remote/activitypub/renderer/image.ts
2018-04-02 04:15:27 +09:00

7 lines
123 B
TypeScript

import config from '../../../conf';
export default ({ _id }) => ({
type: 'Image',
url: `${config.drive_url}/${_id}`
});