summaryrefslogtreecommitdiff
path: root/lib/api/entities/project_import_failed_relation.rb
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