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

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

module API
  module Entities
    class BulkImport < Grape::Entity
      expose :id
      expose :status_name, as: :status
      expose :source_type
      expose :created_at
      expose :updated_at
    end
  end
end