removed user id on all assets

This commit is contained in:
Kevsl 2024-06-09 01:49:04 +02:00
parent 846b24e35c
commit ee314f520d
2 changed files with 0 additions and 2 deletions

View File

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

View File

@ -14,7 +14,6 @@ export class UserService {
id: userId, id: userId,
}, },
select: { select: {
id: true,
firstName: true, firstName: true,
lastName: true, lastName: true,
dollarAvailables: true, dollarAvailables: true,