fixed offer creation

This commit is contained in:
Kevsl
2024-06-13 12:15:42 +02:00
parent ebb017c07c
commit 8c571045f8
2 changed files with 13 additions and 1 deletions

View File

@@ -2,7 +2,6 @@ import { ForbiddenException, Injectable } from '@nestjs/common';
import { PrismaService } from '../prisma/prisma.service';
import { checkUserHasAccount, checkuserIsAdmin } from 'src/utils/checkUser';
import { TradeDto } from './dto';
import { of } from 'rxjs';
@Injectable()
export class TradeService {
constructor(private prisma: PrismaService) {}