merge main

pull/28593/head
Alex Tran 2026-05-30 20:18:36 -05:00
commit 77839c0f23
3 changed files with 4 additions and 4 deletions

View File

@ -259,7 +259,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].
///
@ -305,7 +305,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:
///

View File

@ -14543,7 +14543,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": [
{

View File

@ -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<UserUploadStatsResponseDto> {