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: 8763822b674e559e50df807cc6cc373083cf6e60 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module API
  module Entities
    class Contributor < Grape::Entity
      expose :name, :email, :commits, :additions, :deletions
    end
  end
end