summaryrefslogtreecommitdiff
path: root/lib/api/entities/diff_position.rb
blob: 10150d04ac8a844f57e9b71d25cdd413577cc679 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module API
  module Entities
    class DiffPosition < Grape::Entity
      expose :base_sha, :start_sha, :head_sha, :old_path, :new_path,
        :position_type
    end
  end
end