sender.rb 285 B

1234567891011
  1. # Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
  2. class Ticket::Article::Sender < ApplicationModel
  3. include ChecksHtmlSanitized
  4. include ChecksLatestChangeObserved
  5. include HasCollectionUpdate
  6. validates :name, presence: true
  7. sanitized_html :note
  8. end