class TopicsController def show @topic_view = TopicView.new(params[:id] || params[:topic_id], current_user, username_filters: params[:username_filters], best_of: params[:best_of], page: params[:page]) # Consider the user for a promotion if they're new if current_user.present? Promotio...