mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-06 17:35:44 +00:00
8 lines
256 B
TypeScript
8 lines
256 B
TypeScript
import config from '../../../config';
|
|
import { IDriveFile } from '../../../models/drive-file';
|
|
|
|
export default (file: IDriveFile) => ({
|
|
type: 'Image',
|
|
url: file.metadata.url || `${config.drive_url}/${file._id}`,
|
|
sensitive: file.metadata.isSensitive
|
|
});
|