15b878e27e
Partially addresses #47424.
11 lines
216 B
Ruby
11 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Importable
|
|
extend ActiveSupport::Concern
|
|
|
|
attr_accessor :importing
|
|
alias_method :importing?, :importing
|
|
|
|
attr_accessor :imported
|
|
alias_method :imported?, :imported
|
|
end
|