gitlab-org--gitlab-foss/app/models/concerns/importable.rb
2017-04-03 15:50:22 -03:00

9 lines
185 B
Ruby

module Importable
extend ActiveSupport::Concern
attr_accessor :importing
alias_method :importing?, :importing
attr_accessor :imported
alias_method :imported?, :imported
end