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

logger.rb « github_import « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 980aa0a79828760e1a769a6a1585353d7cdd3607 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  module GithubImport
    class Logger < ::Gitlab::Import::Logger
      def default_attributes
        super.merge(import_type: :github)
      end
    end
  end
end