]> git.openstreetmap.org Git - rails.git/commitdiff
Set max length of block reason
authorAnton Khorev <tony29@yandex.ru>
Wed, 25 Oct 2023 13:46:57 +0000 (16:46 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 24 Aug 2024 12:21:21 +0000 (15:21 +0300)
app/models/user_block.rb

index 9dd8d3138cefb11c887255371f01ec7b9bc2e939..61235c418d079a34944aff3c4f0de93ae5e1b121 100644 (file)
@@ -28,7 +28,7 @@
 
 class UserBlock < ApplicationRecord
   validate :moderator_permissions
-  validates :reason, :characters => true
+  validates :reason, :characters => true, :length => { :maximum => 10000 }
   validates :deactivates_at, :comparison => { :greater_than_or_equal_to => :ends_at }, :unless => -> { needs_view }
   validates :deactivates_at, :absence => true, :if => -> { needs_view }