FEATURE: digest emails will try to choose topics from your tracked and watched categories first

This commit is contained in:
Neil Lalonde
2016-08-15 16:16:04 -04:00
parent f60bfe7550
commit 5849c345cc
3 changed files with 16 additions and 1 deletions

View File

@ -51,5 +51,9 @@ module TopicQuerySQL
topics.bumped_at DESC"
end
def order_top_with_notification_levels(score)
"COALESCE(category_users.notification_level, 1) DESC, COALESCE(top_topics.#{score}, 0) DESC, topics.bumped_at DESC"
end
end
end