11 lines
285 B
Ruby
11 lines
285 B
Ruby
# 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
|