Retrospring/app/models/inbox.rb

21 lines
505 B
Ruby
Raw Normal View History

2014-11-10 14:45:36 -08:00
class Inbox < ActiveRecord::Base
belongs_to :user
2014-11-10 22:10:02 -08:00
belongs_to :question
def answer(answer, user)
2014-12-12 14:14:32 -08:00
answer = Answer.create!(content: answer,
user: user,
question: self.question)
2014-12-14 05:34:51 -08:00
Notification.notify self.question.user, answer
user.increment! :answered_count
2014-12-07 11:51:44 -08:00
self.question.increment! :answer_count
self.destroy
2014-12-12 14:14:32 -08:00
answer
end
def remove
2014-12-14 03:19:52 -08:00
self.question.destroy if self.question.can_be_removed?
self.destroy
end
2014-11-10 14:45:36 -08:00
end