chore: ticket service but not tested

This commit is contained in:
mahyargdz
2025-01-28 20:08:43 +03:30
parent 239099bb15
commit 1d11509371
28 changed files with 368 additions and 73 deletions
@@ -20,7 +20,7 @@ export class PaginationInterceptor implements NestInterceptor {
return next.handle().pipe(
map((data) => {
if (data.paginate || data.count) {
if (data && (data.paginate || data.count)) {
const { count, ...response } = data;
this.logger.log(`paginate response from ${className}.${handlerName}`);
const pager = this.formatPage(page, limit, count, request);