WIP diary comment subscriptions

This commit is contained in:
Mikel Maron 2016-10-03 15:04:22 -04:00
parent 05ad0a4f7d
commit 443080d7b0
8 changed files with 181 additions and 8 deletions

View file

@ -4,6 +4,7 @@ class DiaryEntry < ActiveRecord::Base
has_many :comments, -> { order(:id).preload(:user) }, :class_name => "DiaryComment"
has_many :visible_comments, -> { joins(:user).where(:visible => true, :users => { :status => %w(active confirmed) }).order(:id) }, :class_name => "DiaryComment"
has_and_belongs_to_many :subscribers, :class_name => "User", :join_table => "diary_entries_subscribers", :association_foreign_key => "subscriber_id"
scope :visible, -> { where(:visible => true) }