Welcome to mirror list, hosted at ThFree Co, Russian Federation.

simple.rb « diff_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c53b6711065ee2b9380bda1579d81ad6c5b1d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module DiffViewer
  module Simple
    extend ActiveSupport::Concern

    included do
      self.type = :simple
      self.switcher_icon = 'code'

      def self.switcher_title
        _('source diff')
      end
    end
  end
end