mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 17:49:08 +01:00
10 lines
218 B
Ruby
10 lines
218 B
Ruby
class Smile < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :answer
|
|
validates :user_id, presence: true
|
|
validates :answer_id, presence: true
|
|
|
|
def notification_type(*_args)
|
|
Notifications::Smiled
|
|
end
|
|
end
|