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

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

module API
  module Entities
    class BlameRangeCommit < Grape::Entity
      expose :id
      expose :parent_ids
      expose :message
      expose :authored_date, :author_name, :author_email
      expose :committed_date, :committer_name, :committer_email
    end
  end
end