2018-08-03 13:22:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-01 12:03:51 -04:00
|
|
|
module Importable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
attr_accessor :importing
|
|
|
|
alias_method :importing?, :importing
|
2017-03-27 10:43:35 -04:00
|
|
|
|
2017-04-03 13:31:48 -04:00
|
|
|
attr_accessor :imported
|
|
|
|
alias_method :imported?, :imported
|
2016-06-01 12:03:51 -04:00
|
|
|
end
|