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

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

module API
  module Entities
    class Contributor < Grape::Entity
      expose :name, documentation: { example: 'John Doe' }
      expose :email, documentation: { example: 'johndoe@example.com' }
      expose :commits, documentation: { type: 'integer', example: 117 }
      expose :additions, documentation: { type: 'integer', example: 3 }
      expose :deletions, documentation: { type: 'integer', example: 5 }
    end
  end
end