Skip to content

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