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

entity_failure.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: a3dbe3280ee8902a04a2beae38189644107f89f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module API
  module Entities
    module BulkImports
      class EntityFailure < Grape::Entity
        expose :pipeline_class
        expose :pipeline_step
        expose :exception_class
        expose :correlation_id_value
        expose :created_at
      end
    end
  end
end