mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-15 21:39:00 +00:00
10 lines
188 B
Ruby
10 lines
188 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Importable
|
|
extend ActiveSupport::Concern
|
|
|
|
attr_accessor :user_contributions
|
|
attr_accessor :importing
|
|
alias_method :importing?, :importing
|
|
end
|