Extract constants for column size length validation limits (#30045)

This commit is contained in:
Matt Jankowski 2024-04-24 04:56:28 -04:00 committed by GitHub
parent ebcf9840f4
commit f4a53f3fb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 21 additions and 7 deletions

View file

@ -12,6 +12,8 @@
#
class UserInviteRequest < ApplicationRecord
TEXT_SIZE_LIMIT = 420
belongs_to :user, inverse_of: :invite_request
validates :text, presence: true, length: { maximum: 420 }
validates :text, presence: true, length: { maximum: TEXT_SIZE_LIMIT }
end