mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 10:06:03 +01:00
9 lines
213 B
Ruby
9 lines
213 B
Ruby
|
class ModerationComment < ActiveRecord::Base
|
||
|
belongs_to :user
|
||
|
belongs_to :report
|
||
|
validates :user_id, presence: true
|
||
|
validates :report_id, presence: true
|
||
|
|
||
|
validates :content, length: { maximum: 160 }
|
||
|
end
|