Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make pending product reviews private #2318

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ferrerrajc
Copy link
Contributor

No description provided.

filter(_.userId === userId).filter(_.skuId === skuId).result.headOption

def findAllWithSkusByUser(userId: User#Id): DBIO[Seq[(ProductReview, Sku)]] =
filter(_.userId === userId).join(Skus).on(_.skuId === _.id).result
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's actually account.id according to source from routes

for {
review ← * <~ ProductReviews.mustFindById404(reviewId)
sku ← * <~ Skus.mustFindById404(review.skuId)
_ ← * <~ failIf(userId != review.userId, FetchProductReviewUserMismatch(reviewId))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can check this right after you get review (before getting SKU).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants