retrospring/app/models/smile.rb

11 lines
218 B
Ruby
Raw Normal View History

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