summaryrefslogtreecommitdiff
path: root/app/models/diff_viewer/rich.rb
blob: 0d94d8f773b9aa6c4a6b6236e09dd491bddc577a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module DiffViewer
  module Rich
    extend ActiveSupport::Concern

    included do
      self.type = :rich
      self.switcher_icon = 'doc-text'
      self.switcher_title = _('rendered diff')
    end
  end
end