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: c9c7f34a16a47b04533c3bb42b0f358abb086be5 (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
        expose :status
        expose :error
        expose :updated_at
      end
    end
  end
end