2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
module DiffViewer
|
|
|
|
module Rich
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
self.type = :rich
|
2021-01-03 14:25:43 +05:30
|
|
|
self.switcher_icon = 'doc-text'
|
2019-02-15 15:39:39 +05:30
|
|
|
self.switcher_title = _('rendered diff')
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|