debian-mirror-gitlab/lib/gitlab/bitbucket_server_import/logger.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
229 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# frozen_string_literal: true
module Gitlab
module BitbucketServerImport
class Logger < ::Gitlab::Import::Logger
def default_attributes
super.merge(import_type: :bitbucket_server)
end
end
end
end