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 { checkUserHasAccount, checkuserIsAdmin } from 'src/utils/checkUser';
import { OfferDto } from './dto';
// import { checkRoleLevel, checkUserIsStaff } from 'src/utils/checkUser';
@Injectable()
export class OfferService {
constructor(private prisma: PrismaService) {}

View File

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