Welcome to mirror list, hosted at ThFree Co, Russian Federation.

importable.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 019ef7558494d2d11ea5ff29ea0e080d03d755b0 (plain)
1
2
3
4
5
6
module Importable
  extend ActiveSupport::Concern

  attr_accessor :importing
  alias_method :importing?, :importing
end