mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* Renamed multipart filed name 'files' to 'assetData'. * Added an additional field name of 'thumbnailData' to multipart form. * Implemented upload mechanism for thumbnail directly from the mobile client. * Removed dead code * Implemented a version checking mechanism.
11 lines
353 B
TypeScript
11 lines
353 B
TypeScript
import { InjectQueue } from '@nestjs/bull';
|
|
import { Injectable } from '@nestjs/common';
|
|
import { Queue } from 'bull';
|
|
import { randomUUID } from 'crypto';
|
|
import { AssetEntity } from '../../api-v1/asset/entities/asset.entity';
|
|
|
|
@Injectable()
|
|
export class AssetOptimizeService {
|
|
constructor(@InjectQueue('optimize') private optimizeQueue: Queue) {}
|
|
}
|