mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-24 23:13:09 +02: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
|
|
});
|