Fix 500 on Discover

This commit is contained in:
Karina Kwiatek 2023-05-07 16:39:02 +02:00
parent fa025fda7e
commit be66f7061d
1 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,9 @@ class DiscoverController < ApplicationController
@popular_questions = Question.where("created_at > ?", Time.now.ago(1.week)).order(:answer_count).reverse_order.limit(top_x).includes(:user)
@new_users = User.where("asked_count > 0").order(:id).reverse_order.limit(top_x).includes(:profile)
answer_ids = @popular_answers.map(&:id) + @most_discussed.map(&:id)
@subscribed_answer_ids = Subscription.where(user: current_user, answer_id: answer_ids).pluck(:answer_id)
# .user = the user
# .question_count = how many questions did the user ask
@users_with_most_questions = Question.select('user_id, COUNT(*) AS question_count').