2019-05-18 00:54:41 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProjectImportEntity < ProjectEntity
|
|
|
|
include ImportHelper
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :import_source, documentation: { type: 'string', example: 'source/source-repo' }
|
|
|
|
expose :import_status, documentation: {
|
|
|
|
type: 'string', example: 'scheduled', values: %w[scheduled started finished failed canceled]
|
|
|
|
}
|
|
|
|
expose :human_import_status_name, documentation: { type: 'string', example: 'canceled' }
|
2019-05-18 00:54:41 +05:30
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :provider_link, documentation: { type: 'string', example: '/source/source-repo' } do |project, options|
|
2019-05-18 00:54:41 +05:30
|
|
|
provider_project_link_url(options[:provider_url], project[:import_source])
|
|
|
|
end
|
|
|
|
end
|