chore: Increase character limit for external url fields (#7230)

- Increase the external url field validation to 2048 characters

fixes: https://github.com/chatwoot/chatwoot/issues/7098
This commit is contained in:
Sojan Jose
2023-05-31 19:17:24 +05:30
committed by GitHub
parent 373f5f5b64
commit d93a8d05bc
7 changed files with 45 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ class Attachment < ApplicationRecord
belongs_to :message
has_one_attached :file
validate :acceptable_file
validates :external_url, length: { maximum: 1000 }
validates :external_url, length: { maximum: Limits::URL_LENGTH_LIMIT }
enum file_type: [:image, :audio, :video, :file, :location, :fallback, :share, :story_mention, :contact]
def push_event_data