debian-mirror-gitlab/lib/gitlab/gitaly_client/diff.rb

12 lines
246 B
Ruby
Raw Normal View History

2018-12-23 12:14:25 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
module Gitlab
module GitalyClient
class Diff
2018-11-18 11:00:15 +05:30
ATTRS = %i(from_path to_path old_mode new_mode from_id to_id patch overflow_marker collapsed too_large).freeze
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
include AttributesBag
2017-09-10 17:25:29 +05:30
end
end
end