feat: show shared link view count

This commit is contained in:
Jason Rasmussen
2025-02-18 17:34:51 -05:00
parent 7bf142dc43
commit 8b0684ee9c
15 changed files with 89 additions and 33 deletions

View File

@@ -11415,6 +11415,9 @@
},
"userId": {
"type": "string"
},
"viewCount": {
"type": "number"
}
},
"required": [
@@ -11429,7 +11432,8 @@
"password",
"showMetadata",
"type",
"userId"
"userId",
"viewCount"
],
"type": "object"
},

View File

@@ -1060,6 +1060,7 @@ export type SharedLinkResponseDto = {
token?: string | null;
"type": SharedLinkType;
userId: string;
viewCount: number;
};
export type SharedLinkCreateDto = {
albumId?: string;