Skip to content

Commit

Permalink
fix: adicionando dto no response
Browse files Browse the repository at this point in the history
  • Loading branch information
alanagabriele committed Jun 24, 2024
1 parent 090bb60 commit 72af5d2
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/modules/graficos/graficos.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Injectable } from '@nestjs/common';
import { PrismaService } from 'database/prisma.service';
import { ResponseMessageDto } from 'src/shared/dto/ResponseMessage.dto';

@Injectable()
export class GraficosService {
Expand Down Expand Up @@ -100,10 +101,14 @@ export class GraficosService {
dadosVelocidadeTempoFormatados.push(bodyVelocidadeTempo);
});

return {
dadosVelocidadeTempoFormatados,
dadosVelocidadeAceleracaoFormatados,
dadosTrilhas,
};
return new ResponseMessageDto({
success: true,
data: {
dadosVelocidadeTempoFormatados,
dadosVelocidadeAceleracaoFormatados,
dadosTrilhas,
},
message: 'Dados formatados com sucesso!',
});
}
}

0 comments on commit 72af5d2

Please sign in to comment.