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-08-17 16:37:16 +00:00
|
|
|
ActiveSupport::Deprecation.warn("Concern 'HasObjectManagerAttributesValidation' is deprecated. Use 'HasObjectManagerValidation' instead.")
|
2021-07-12 08:31:37 +00:00
|
|
|
|
2021-08-17 16:37:16 +00:00
|
|
|
include HasObjectManagerAttributes
|
2019-03-13 23:51:22 +00:00
|
|
|
end
|
|
|
|
end
|