9 lines
207 B
Ruby
9 lines
207 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class Link::Object < ApplicationModel
|
|
include ChecksHtmlSanitized
|
|
|
|
validates :name, presence: true
|
|
|
|
sanitized_html :note
|
|
end
|