trabajo-afectivo/app/models/concerns/can_be_imported.rb

12 lines
277 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
module CanBeImported
extend ActiveSupport::Concern
# methods defined here are going to extend the class, not the instance of it
class_methods do
def importable?
true
end
end
end