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

12 lines
187 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-06-06 21:28:06 +00:00
module DiffViewer
class NotDiffable < Base
include Simple
include Static
self.partial_name = 'not_diffable'
self.binary = true
end
end