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

diff_line_parallel_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0438a67d51b0bf4d25d56a251ddd7d7f18622275 (plain)
1
2
3
4
5
6
# frozen_string_literal: true

class DiffLineParallelEntity < Grape::Entity
  expose :left, using: DiffLineEntity
  expose :right, using: DiffLineEntity
end