Triggering the actions.

pull/28593/head
Dell 2026-05-30 21:16:32 -04:00
parent f6b296a833
commit ea33d736c5
3 changed files with 4 additions and 4 deletions

View File

@ -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:
///

View File

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

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