sender.rb 333 B

12345678910111213
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Ticket::Article::Sender < ApplicationModel
  3. include HasDefaultModelUserRelations
  4. include ChecksHtmlSanitized
  5. include HasCollectionUpdate
  6. validates :name, presence: true
  7. validates :note, length: { maximum: 250 }
  8. sanitized_html :note
  9. end