mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
12 lines
232 B
Ruby
12 lines
232 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BitbucketServerImport
|
|
class Logger < ::Import::Framework::Logger
|
|
def default_attributes
|
|
super.merge(import_type: :bitbucket_server)
|
|
end
|
|
end
|
|
end
|
|
end
|