Welcome to mirror list, hosted at ThFree Co, Russian Federation.

export_status.rb « bulk_imports « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fee983c6fd87838a2de986ed044613293aed2f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    module BulkImports
      class ExportStatus < Grape::Entity
        expose :relation, documentation: { type: 'string', example: 'issues' }
        expose :status, documentation: { type: 'string', example: 'started', values: %w[started finished failed] }
        expose :error, documentation: { type: 'string', example: 'Error message' }
        expose :updated_at, documentation: { type: 'dateTime', example: '2012-05-28T04:42:42-07:00' }
      end
    end
  end
end