mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 10:06:03 +01:00
12 lines
271 B
Ruby
12 lines
271 B
Ruby
class Comment < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :answer
|
|
validates :user_id, presence: true
|
|
validates :answer_id, presence: true
|
|
|
|
validates :content, length: { maximum: 160 }
|
|
|
|
def notification_type(*_args)
|
|
Notifications::Commented
|
|
end
|
|
end
|