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: 4d2707b08abdda12332860dffb322acb20770c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Importable
  extend ActiveSupport::Concern

  attr_accessor :importing
  alias_method :importing?, :importing

  attr_accessor :imported
  alias_method :imported?, :imported
end