update customers

This commit is contained in:
2026-06-18 20:15:05 +03:30
parent e1823d2722
commit 136b067d37
8 changed files with 285 additions and 18 deletions
@@ -179,7 +179,7 @@ export class UsersController {
query: FindUsersDto,
@RestId() restId: string,
) {
return this.userService.findAll(restId, query);
return this.userService.findPaginated(restId, query);
}
@UseGuards(AdminAuthGuard)