Triggering the actions.
parent
f6b296a833
commit
ea33d736c5
|
|
@ -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:
|
||||
///
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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