Feat add validation for report comment: characters under 1000 valid (#4833)
This commit is contained in:
committed by
Eugen Rochko
parent
5264496240
commit
8185f98872
@ -22,6 +22,8 @@ class Report < ApplicationRecord
|
||||
scope :unresolved, -> { where(action_taken: false) }
|
||||
scope :resolved, -> { where(action_taken: true) }
|
||||
|
||||
validates :comment, length: { maximum: 1000 }
|
||||
|
||||
def statuses
|
||||
Status.where(id: status_ids).includes(:account, :media_attachments, :mentions)
|
||||
end
|
||||
|
Reference in New Issue
Block a user