chore(server): open-api memory lane number generation ()

chore(server): openaapi memory lane number generation
This commit is contained in:
Alex 2024-03-27 22:27:26 -05:00 committed by GitHub
commit 9b705e4450
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 8 additions and 5 deletions
server/src/dtos

View file

@ -133,7 +133,10 @@ export function mapAsset(entity: AssetEntity, options: AssetMapOptions = {}): As
export class MemoryLaneResponseDto {
@ApiProperty({ deprecated: true })
title!: string;
@ApiProperty({ type: 'integer' })
yearsAgo!: number;
assets!: AssetResponseDto[];
}