Retrait de logs superflus
This commit is contained in:
@ -19,7 +19,6 @@ export class ChallengeActionsService {
|
||||
}
|
||||
|
||||
async findAll(queryPagination: QueryPaginationDto, filterChallengeActions: FilterChallengeActionsDto): Promise<[ChallengeAction[], number]> {
|
||||
console.log(filterChallengeActions)
|
||||
return [
|
||||
await this.prisma.challengeAction.findMany({
|
||||
...paginate(queryPagination),
|
||||
@ -36,7 +35,6 @@ export class ChallengeActionsService {
|
||||
}
|
||||
|
||||
async update(id: number, updateChallengeActionDto: UpdateChallengeActionDto): Promise<ChallengeAction> {
|
||||
console.log(updateChallengeActionDto)
|
||||
return await this.prisma.challengeAction.update({
|
||||
where: { id },
|
||||
data: updateChallengeActionDto,
|
||||
|
Reference in New Issue
Block a user