BigW Consortium Gitlab

commit.rb 308 Bytes
Newer Older
1 2 3 4 5
module Gitlab
  module Diff
    module FileCollection
      class Commit < Base
        def initialize(commit, diff_options:)
6
          super(commit,
7 8 9 10 11 12 13 14
            project: commit.project,
            diff_options: diff_options,
            diff_refs: commit.diff_refs)
        end
      end
    end
  end
end