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

static.rb « diff_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d761328b3f6d9ed822ca6fa6ff811e1121356643 (plain)
1
2
3
4
5
6
7
8
9
10
module DiffViewer
  module Static
    extend ActiveSupport::Concern

    # We can always render a static viewer, even if the diff is too large.
    def render_error
      nil
    end
  end
end