retrospring/app/models/comment.rb

25 lines
621 B
Ruby
Raw Normal View History

2014-10-28 06:36:38 +01:00
class Comment < ActiveRecord::Base
belongs_to :user
belongs_to :answer
2014-11-30 19:43:03 +01:00
validates :user_id, presence: true
validates :answer_id, presence: true
2014-12-07 14:29:47 +01:00
validates :content, length: { maximum: 160 }
2014-12-14 15:10:23 +01:00
2014-12-28 21:58:11 +01:00
after_create do
Notification.notify answer.user, self unless answer.user == self.user
user.increment! :commented_count
answer.increment! :comment_count
end
before_destroy do
Notification.denotify answer.user, self unless answer.user == self.user
user.decrement! :commented_count
answer.decrement! :comment_count
end
2014-12-14 15:10:23 +01:00
def notification_type(*_args)
Notifications::Commented
end
2014-10-28 06:36:38 +01:00
end