12345678910 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- class Link::Object < ApplicationModel
- include ChecksHtmlSanitized
- validates :name, presence: true
- validates :note, length: { maximum: 250 }
- sanitized_html :note
- end
|