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

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

module API
  module Entities
    class ProjectImportFailedRelation < Grape::Entity
      expose :id, :created_at, :exception_class, :exception_message, :source

      expose :relation_key, as: :relation_name
    end
  end
end