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: 1278c22185cceaa7fb77601dfa68d812d770dd5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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