From 9126bf2520c1d35f3639416d800b821706ddff45 Mon Sep 17 00:00:00 2001 From: mgabor <> Date: Wed, 17 Apr 2024 00:32:50 +0200 Subject: [PATCH] fix deprecation notice --- server/src/dtos/album.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/dtos/album.dto.ts b/server/src/dtos/album.dto.ts index 6649340cab..15e606b073 100644 --- a/server/src/dtos/album.dto.ts +++ b/server/src/dtos/album.dto.ts @@ -102,7 +102,7 @@ export class AlbumResponseDto { updatedAt!: Date; albumThumbnailAssetId!: string | null; shared!: boolean; - @ApiProperty({ deprecated: true, description: 'Deprecated in favor of users' }) + @ApiProperty({ deprecated: true, description: 'Deprecated in favor of sharedUsersV2' }) sharedUsers!: UserResponseDto[]; sharedUsersV2!: AlbumUserResponseDto[]; hasSharedLink!: boolean;