2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
module Gitlab
|
|
|
|
module Diff
|
|
|
|
module FileCollection
|
|
|
|
class Commit < Base
|
|
|
|
def initialize(commit, diff_options:)
|
|
|
|
super(commit,
|
|
|
|
project: commit.project,
|
|
|
|
diff_options: diff_options,
|
|
|
|
diff_refs: commit.diff_refs)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|