2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
class MergeRequestDiffFile < ActiveRecord::Base
|
|
|
|
include Gitlab::EncodingHelper
|
2018-11-08 19:23:39 +05:30
|
|
|
include DiffFile
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
belongs_to :merge_request_diff
|
|
|
|
|
|
|
|
def utf8_diff
|
|
|
|
return '' if diff.blank?
|
|
|
|
|
|
|
|
encode_utf8(diff) if diff.respond_to?(:encoding)
|
|
|
|
end
|
|
|
|
|
|
|
|
def diff
|
|
|
|
binary? ? super.unpack('m0').first : super
|
|
|
|
end
|
|
|
|
end
|