Skip to content

Commit

Permalink
feat(next/api): increase pageSize of customer service logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sdjdd committed Mar 4, 2024
1 parent 45ac57e commit 134347a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next/api/src/controller/customer-service-action-log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class CustomerServiceActionLogController {
@Query('from', ParseDatePipe) from: Date | undefined,
@Query('to', ParseDatePipe) to: Date | undefined,
@Query('operatorIds', ParseCsvPipe) operatorIds: string[] | undefined,
@Query('pageSize', new ParseIntPipe({ min: 1, max: 1000 })) pageSize = 10,
@Query('pageSize', new ParseIntPipe({ min: 1, max: 10000 })) pageSize = 10,
@Query('desc', ParseBoolPipe) desc: boolean | undefined
) {
if (!from || !to) {
Expand Down

0 comments on commit 134347a

Please sign in to comment.