gitlab-org--gitlab-foss/app/models/diff_viewer/simple.rb

12 lines
205 B
Ruby
Raw Normal View History

2017-06-06 21:28:06 +00:00
module DiffViewer
module Simple
extend ActiveSupport::Concern
included do
self.type = :simple
self.switcher_icon = 'code'
self.switcher_title = 'source diff'
end
end
end