diff options
author | voidSatisfaction <lourie@naver.com> | 2017-09-07 16:55:42 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-09-07 09:55:42 +0200 |
commit | 8185f988723dd95b814bcc5f03ccb3da94edbae4 (patch) | |
tree | 1f82f03aec3c2df407355d063c0b8a01a2a471f0 /app | |
parent | 526449624014f7ec80f6f14570ef17d482019483 (diff) |
Feat add validation for report comment: characters under 1000 valid (#4833)
Diffstat (limited to 'app')
-rw-r--r-- | app/models/report.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/report.rb b/app/models/report.rb index 4d2552d30..479aa17bb 100644 --- a/app/models/report.rb +++ b/app/models/report.rb @@ -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 |