Retrospring/app/models/report.rb

17 lines
471 B
Ruby
Raw Normal View History

2014-12-27 05:35:09 -08:00
class Report < ActiveRecord::Base
belongs_to :user
has_many :moderation_votes, dependent: :destroy
has_many :moderation_comments, dependent: :destroy
validates :type, presence: true
validates :target_id, presence: true
validates :user_id, presence: true
def target
type.sub('Reports::', '').constantize.where(id: target_id).first
end
2014-12-28 14:26:16 -08:00
def votes
moderation_votes.where(upvote: true).count - moderation_votes.where(upvote: false).count
end
2014-12-27 05:35:09 -08:00
end