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

added.rb « diff_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70d13e3478c1db7f26c3bc5882f06be567c51fcd (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module DiffViewer
  class Added < Base
    include Simple
    include Static

    self.partial_name = 'added'
  end
end