mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 12:48:15 +00:00
7 lines
157 B
Ruby
7 lines
157 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DiffLineParallelEntity < Grape::Entity
|
|
expose :left, using: DiffLineEntity
|
|
expose :right, using: DiffLineEntity
|
|
end
|