debian-mirror-gitlab/app/models/bulk_imports/file_transfer.rb

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

21 lines
482 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
module BulkImports
module FileTransfer
extend self
UnsupportedObjectType = Class.new(StandardError)
def config_for(portable)
case portable
when ::Project
2023-05-27 22:25:52 +05:30
::BulkImports::FileTransfer::ProjectConfig.new(portable)
2021-06-08 01:23:25 +05:30
when ::Group
2023-05-27 22:25:52 +05:30
::BulkImports::FileTransfer::GroupConfig.new(portable)
2021-06-08 01:23:25 +05:30
else
raise(UnsupportedObjectType, "Unsupported object type: #{portable.class}")
end
end
end
end