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