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

11 lines
201 B
Ruby
Raw Normal View History

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