merge main
commit
77839c0f23
|
|
@ -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:
|
||||
///
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue