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