mirror of
https://github.com/immich-app/immich.git
synced 2025-02-04 01:09:14 -05:00
* rename api tags to follow plural nomenclature of endpoints * chore: open api * fix mobile
18 lines
629 B
TypeScript
18 lines
629 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import { AuthDto } from 'src/dtos/auth.dto';
|
|
import { DuplicateResponseDto } from 'src/dtos/duplicate.dto';
|
|
import { Auth, Authenticated } from 'src/middleware/auth.guard';
|
|
import { DuplicateService } from 'src/services/duplicate.service';
|
|
|
|
@ApiTags('Duplicates')
|
|
@Controller('duplicates')
|
|
export class DuplicateController {
|
|
constructor(private service: DuplicateService) {}
|
|
|
|
@Get()
|
|
@Authenticated()
|
|
getAssetDuplicates(@Auth() auth: AuthDto): Promise<DuplicateResponseDto[]> {
|
|
return this.service.getDuplicates(auth);
|
|
}
|
|
}
|