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