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

module API
  module Entities
    class MergeRequestDiff < Grape::Entity
      expose :id, :head_commit_sha, :base_commit_sha, :start_commit_sha,
        :created_at, :merge_request_id, :state, :real_size
    end
  end
end