summaryrefslogtreecommitdiff
path: root/lib/api/entities/bulk_imports/entity.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/entities/bulk_imports/entity.rb')
-rw-r--r--lib/api/entities/bulk_imports/entity.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/api/entities/bulk_imports/entity.rb b/lib/api/entities/bulk_imports/entity.rb
index 8f9fbe57935..176d10b2580 100644
--- a/lib/api/entities/bulk_imports/entity.rb
+++ b/lib/api/entities/bulk_imports/entity.rb
@@ -9,7 +9,11 @@ module API
expose :status_name, as: :status, documentation: {
type: 'string', example: 'created', values: %w[created started finished timeout failed]
}
+ expose :entity_type, documentation: { type: 'string', values: %w[group project] }
expose :source_full_path, documentation: { type: 'string', example: 'source_group' }
+ expose :full_path, as: :destination_full_path, documentation: {
+ type: 'string', example: 'some_group/source_project'
+ }
expose :destination_name, documentation: { type: 'string', example: 'destination_slug' } # deprecated
expose :destination_slug, documentation: { type: 'string', example: 'destination_slug' }
expose :destination_namespace, documentation: { type: 'string', example: 'destination_path' }
@@ -19,6 +23,7 @@ module API
expose :created_at, documentation: { type: 'dateTime', example: '2012-05-28T04:42:42-07:00' }
expose :updated_at, documentation: { type: 'dateTime', example: '2012-05-28T04:42:42-07:00' }
expose :failures, using: EntityFailure, documentation: { is_array: true }
+ expose :migrate_projects, documentation: { type: 'boolean', example: true }
end
end
end