debian-mirror-gitlab/app/models/bulk_imports/file_transfer.rb
2023-05-27 22:25:52 +05:30

20 lines
482 B
Ruby

# frozen_string_literal: true
module BulkImports
module FileTransfer
extend self
UnsupportedObjectType = Class.new(StandardError)
def config_for(portable)
case portable
when ::Project
::BulkImports::FileTransfer::ProjectConfig.new(portable)
when ::Group
::BulkImports::FileTransfer::GroupConfig.new(portable)
else
raise(UnsupportedObjectType, "Unsupported object type: #{portable.class}")
end
end
end
end