gitlab-org--gitlab-foss/lib/api/entities/contributor.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
177 B
Ruby
Raw Normal View History

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