summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/lfs_changes.rb
blob: 6c4191ce25bc849bcc5d50ff060c03a833a056da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Gitlab
  module Git
    class LfsChanges
      def initialize(repository, newrevs = nil)
        @repository = repository
        @newrevs = newrevs
      end

      def new_pointers(object_limit: nil, not_in: nil, dynamic_timeout: nil)
        @repository.gitaly_blob_client.get_new_lfs_pointers(@newrevs, object_limit, not_in, dynamic_timeout)
      end

      def all_pointers
        @repository.gitaly_blob_client.get_all_lfs_pointers
      end
    end
  end
end