scope :visible, -> { where(:status => %w[pending active confirmed]) }
scope :active, -> { where(:status => %w[active confirmed]) }
scope :identifiable, -> { where(:data_public => true) }
scope :visible, -> { where(:status => %w[pending active confirmed]) }
scope :active, -> { where(:status => %w[active confirmed]) }
scope :identifiable, -> { where(:data_public => true) }
- diary_entry_score = diary_entries.inject(0) { |acc, elem| acc + elem.body.spam_score }
- diary_comment_score = diary_comments.inject(0) { |acc, elem| acc + elem.body.spam_score }
+ diary_entry_score = diary_entries.visible.inject(0) { |acc, elem| acc + elem.body.spam_score }
+ diary_comment_score = diary_comments.visible.inject(0) { |acc, elem| acc + elem.body.spam_score }
score = description.spam_score / 4.0
score += diary_entries.where("created_at > ?", 1.day.ago).count * 10
score = description.spam_score / 4.0
score += diary_entries.where("created_at > ?", 1.day.ago).count * 10