2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-22 15:30:34 +05:30
|
|
|
module Importable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
attr_accessor :importing
|
|
|
|
alias_method :importing?, :importing
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
attr_accessor :imported
|
|
|
|
alias_method :imported?, :imported
|
2016-06-22 15:30:34 +05:30
|
|
|
end
|