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

14 lines
239 B
Ruby

# frozen_string_literal: true
module DiffViewer
module Simple
extend ActiveSupport::Concern
included do
self.type = :simple
self.switcher_icon = 'code'
self.switcher_title = _('source diff')
end
end
end