diff --git a/mobile/openapi/lib/api/users_api.dart b/mobile/openapi/lib/api/users_api.dart index f169c380df..568df49978 100644 --- a/mobile/openapi/lib/api/users_api.dart +++ b/mobile/openapi/lib/api/users_api.dart @@ -254,7 +254,7 @@ class UsersApi { /// Get current user upload statistics /// - /// Retrieve daily upload counts for the current user. + /// Retrieve daily upload counts and totals for the current user. /// /// Note: This method returns the HTTP [Response]. /// @@ -299,7 +299,7 @@ class UsersApi { /// Get current user upload statistics /// - /// Retrieve daily upload counts for the current user. + /// Retrieve daily upload counts and totals for the current user. /// /// Parameters: /// diff --git a/open-api/immich-openapi-specs.json b/open-api/immich-openapi-specs.json index cbf27c5b3c..7cd7d4f525 100644 --- a/open-api/immich-openapi-specs.json +++ b/open-api/immich-openapi-specs.json @@ -14479,7 +14479,7 @@ }, "/users/me/stats/uploads": { "get": { - "description": "Retrieve daily upload counts for the current user.", + "description": "Retrieve daily upload counts and totals for the current user.", "operationId": "getMyUploadStatistics", "parameters": [ { diff --git a/server/src/controllers/user.controller.ts b/server/src/controllers/user.controller.ts index 2961f28802..015878d7d5 100644 --- a/server/src/controllers/user.controller.ts +++ b/server/src/controllers/user.controller.ts @@ -71,7 +71,7 @@ export class UserController { @Authenticated({ permission: Permission.UserRead }) @Endpoint({ summary: 'Get current user upload statistics', - description: 'Retrieve daily upload counts for the current user.', + description: 'Retrieve daily upload counts and totals for the current user.', history: new HistoryBuilder().added('v3').stable('v3'), }) getMyUploadStatistics(@Auth() auth: AuthDto, @Query() dto: UserUploadStatsDto): Promise {