summaryrefslogtreecommitdiff
path: root/app/models/concerns/importable.rb
blob: c9331eaf4cce2309d27cd40f49aad8b6527bff00 (plain)
1
2
3
4
5
6
7
8
9
module Importable
  extend ActiveSupport::Concern

  attr_accessor :importing
  alias_method :importing?, :importing

  attr_accessor :imported
  alias_method :imported?, :imported
end