mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
15 lines
560 B
TypeScript
15 lines
560 B
TypeScript
|
import { ISmartInfoRepository } from '@app/domain';
|
||
|
import { Injectable } from '@nestjs/common';
|
||
|
import { InjectRepository } from '@nestjs/typeorm';
|
||
|
import { Repository } from 'typeorm';
|
||
|
import { SmartInfoEntity } from '../entities';
|
||
|
|
||
|
@Injectable()
|
||
|
export class SmartInfoRepository implements ISmartInfoRepository {
|
||
|
constructor(@InjectRepository(SmartInfoEntity) private repository: Repository<SmartInfoEntity>) {}
|
||
|
|
||
|
async upsert(info: Partial<SmartInfoEntity>): Promise<void> {
|
||
|
await this.repository.upsert(info, { conflictPaths: ['assetId'] });
|
||
|
}
|
||
|
}
|