summaryrefslogtreecommitdiff
path: root/app/models/diff_viewer/rich.rb
blob: 3b0ca6e4cff11d490260657a92d059bd5f25205c (plain)
1
2
3
4
5
6
7
8
9
10
11
module DiffViewer
  module Rich
    extend ActiveSupport::Concern

    included do
      self.type = :rich
      self.switcher_icon = 'file-text-o'
      self.switcher_title = 'rendered diff'
    end
  end
end