Retrospring/app/models/smile.rb

11 lines
218 B
Ruby
Raw Normal View History

2014-11-30 10:43:22 -08:00
class Smile < ActiveRecord::Base
belongs_to :user
belongs_to :answer
validates :user_id, presence: true
validates :answer_id, presence: true
2014-12-14 06:06:10 -08:00
def notification_type(*_args)
Notifications::Smiled
end
2014-11-30 10:43:22 -08:00
end