up
This commit is contained in:
@@ -180,7 +180,7 @@ export class ProductService {
|
||||
const product = await this.findOrFail(id)
|
||||
|
||||
if (product.shop.id !== shopId) {
|
||||
throw new BadRequestException("Product doesnt belongs to you")
|
||||
throw new BadRequestException("Product doesnt belongs to your shop")
|
||||
}
|
||||
|
||||
product.deletedAt = new Date();
|
||||
@@ -194,13 +194,13 @@ export class ProductService {
|
||||
|
||||
const favorite = await this.em.findOne(Favorite, { user: userId, product: productId });
|
||||
if (favorite) {
|
||||
return this.em.removeAndFlush(favorite);
|
||||
return await this.em.removeAndFlush(favorite);
|
||||
}
|
||||
const newFavorite = this.em.create(Favorite, {
|
||||
user: userId,
|
||||
product: productId,
|
||||
});
|
||||
return this.em.persistAndFlush(newFavorite);
|
||||
return await this.em.persistAndFlush(newFavorite);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user