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