2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2019-03-13 23:51:22 +00:00
|
|
|
# Copyright (C) 2018 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
module HasObjectManagerAttributesValidation
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2021-07-12 08:31:37 +00:00
|
|
|
# Disable table inheritance to allow columns with the name 'type'.
|
|
|
|
self.inheritance_column = nil
|
|
|
|
|
2019-03-13 23:51:22 +00:00
|
|
|
validates_with ObjectManager::Attribute::Validation, on: %i[create update]
|
|
|
|
end
|
|
|
|
end
|