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

diff_line_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfef6d3bde82222e93a428d81b70ae709aec2218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class DiffLineEntity < Grape::Entity
  expose :line_code
  expose :type
  expose :old_line
  expose :new_line
  expose :text
  expose :meta_positions, as: :meta_data

  expose :rich_text do |line|
    ERB::Util.html_escape(line.rich_text || line.text)
  end

  expose :suggestible?, as: :can_receive_suggestion
end